-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (45 loc) · 889 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>MY COOL WEB SITE
</title><style>
body {background-image: linear-gradient(180deg,#cc2222, white);}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
h1 {color: #00cccc;
font-family: Times New Roman;
text-align:center;
}
h2 {color: #00cccc;
font-family: Times New Roman;
text-align: justify;
}
p {color:#000000;
font-family: Times New Roman;
padding: 30px;
text-align: justify;
background-color: white;
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4);
font-size: 14px;
}
</style>
</head>
<body>
<h1>MY COOL WEB SITE
</h1>
<hr/>
<h2>First Paragraph
</h2>
<p>One day, I was born
</p>
<h2>Now
</h2>
<p>I am a warrior for academic justice.
</p>
<img src="images/logo.jpg" class="center">
<img src="images/WOW.jpg" class="center">
</body>
</html>