-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst.html
50 lines (40 loc) · 885 Bytes
/
first.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
<!doctype html>
<html>
<head>
<title>My first web!</title>
<style>
body {
background-color: pink;
}
#website-name {
font-family: sans-serif;
font-size: 40px;
color: green; /* font color */
}
#website-name {
text-align: center;
}
#cat-picture {
width: 100px;
height: 100px;
border: 10px solid black;
}
li {
list-style-type: none;
text-decoration: none;
}
</style>
</head>
<body>
<nav>
<ul>
<li="active">Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
<h2 id="website-name">My website</h2>
<a href="http://www.facebook.com">Come visit me at facebook</a>
<img id="cat-picture" src="./cat.jpg" />
</body>
</html>