-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiv_span.html
More file actions
40 lines (34 loc) · 840 Bytes
/
Copy pathdiv_span.html
File metadata and controls
40 lines (34 loc) · 840 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>
My Webpage!
</title>
<style>
#top {
font-size: 36px;
}
#middle {
font-size: 24px;
}
#bottom {
font-size: 12px;
}
.name {
font-weight: bold;
}
</style>
</head>
<body>
<!-- DIV: Section the code-->
<div id="top">
This is the <span class="name">top</span> of my web page.
</div>
<div id="middle">
This is the <span class="name">middle</span> of my web page.
</div>
<div id="bottom">
This is the <span class="name">bottom</span> of my web page.
</div>
</body>
</html>