-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
64 lines (58 loc) · 1.26 KB
/
Index.html
File metadata and controls
64 lines (58 loc) · 1.26 KB
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
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<title>welcome to my web page</title>
<style>
a{
text-decoration: none;
}
li {
display: inline;
padding: 30px;
}
#name {
background-color: aqua;
color: crimson;
}
#age {
background-color: burlywood;
color: darkblue;
}
#live {
background-color: coral;
color: darkmagenta;
}
#food {
background-color: crimson;
color: darkturquoise;
}
article p {
padding: 30px;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li id="homelink"><a href="#">Home</a></li>
<li id="aboutlink"><a href="#">About</a></li>
<li id="contactlink"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>Class 1 Lab</h1>
<article>
<p id="name">what is your name?</p>
<p id="age">what is your age ?</p>
<p id="live">where do you live ?</p>
<p id="food">what is your fav food ?</p>
</article>
</main>
<footer>
© ASAC 2021
</footer>
<script src="app.js"></script>
</body>
</html>