-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.04 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
h1 {background-color: rgb(32, 4, 58); color: white; }
</style>
</head>
<body>
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">contact us</a></li></li>
</ul>
</nav>
</header>
<main>
<h1>Class 1 Lab</h1>
<article>
<p style="background-color: rgb(104, 8, 27);
color: rgb(19, 201, 201);">what's your name ?</p>
<p style="background-color: rgb(223, 48, 223);color: rgb(169, 168, 173);">how old are you ?</p>
<p style="background-color: rgb(153, 7, 85);color: rgb(223, 226, 19);">Have you studied at the university and what is your university major?</p>
<p style="background-color: rgb(240, 20, 111);color: rgb(9, 161, 34);">What is your favorite hobby ?</p>
</article>
</main>
<footer>
© ASAC
</footer>
<script src="app.js"></script>
</body>
</html>