-
Notifications
You must be signed in to change notification settings - Fork 0
/
StylesDirect.html
53 lines (48 loc) · 1021 Bytes
/
StylesDirect.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
<!DOCTYPE html>
<html>
<head>
<title>My Web Page!</title>
<style>
h1 {
color: green;
text-align: center;
}
div {
background-color: lightblue;
width: 600px;
height: 200px;
margin: 30px;
padding: 20px;
}
#top {
font-size: 36px;
color: red;
}
#middle {
font-size: 28px;
color: orange;
}
#bottom {
font-size: 20px;
color: yellow;
}
.name {
font-weight: bold;
}
</style>
</head>
<body>
<h1>Welcome to My Web Page!</h1>
<p>My name is Jonny Pei.</p>
<p>I enjoy coding and exploring astronomy.</p>
<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>