-
Notifications
You must be signed in to change notification settings - Fork 0
/
class&id.html
54 lines (40 loc) · 923 Bytes
/
class&id.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>sam.html </title>
<style>
#top{
font-size: 335%;
color: #4CB5F5;
}
#mid{
font-size: 400%;
color: #F18D9E;
/* 2c7873 */
}
#bottom{
font-size:330%;
color:#E6D72A;
/* FFBB00 */
}
.pos{
color: #5BC8AC;
font-size: 250%;
}
</style>
</head>
<body>
<DIV style="border: 4PX;padding: 10PX">
<div class="pos">
This is the <span id ="top">Top</span> of the webpage.
</div>
<div class="pos">
This is the <span id ="mid">Mid</span> of the webpage.
</div>
<div class="pos">
This is the <span id ="bottom">Bottom</span> of the webpage.
</div>
</DIV>
</body>
</html>