-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (26 loc) · 930 Bytes
/
index.html
File metadata and controls
31 lines (26 loc) · 930 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>lab01b</title>
<style>
h1 {
background-color: rgb(59, 112, 116);
color: rgb(80, 29, 13);
}
</style>
</head>
<body>
<header></header>
<main>
<h1>Class lab 1</h1>
<article style="background-color:rgb(209, 151, 151);">
<p style="color: rgb(196, 204, 152);background-color: rgb(243, 140, 93);">what is your name ?</p>
<p style="color: rgb(140, 151, 78);background-color: rgb(179, 106, 72);">what is your favorite football club ?</p>
<p style="color: rgb(89, 100, 22);background-color: rgb(139, 97, 77);">who is your favorite player ?</p>
<p style="color: rgb(52, 59, 6);background-color: rgb(100, 92, 88);">who is the best player you have ever seen ?</p>
</article>
</main>
<footer></footer>
<script src="app.js"></script>
</body>
</html>