-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (47 loc) · 1013 Bytes
/
index.html
File metadata and controls
60 lines (47 loc) · 1013 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>welcome to 201 level</title>
<style>
#firstp {
color: rgb(102, 175, 218);
background-color: rgb(47, 47, 124);
}
#secp {
color: rgb(211, 184, 205);
background-color: rgb(182, 37, 138);
}
#therdp {
color: rgb(138, 80, 153);
background-color: rgb(93, 79, 187);
}
#fourthp {
color: rgb(154, 214, 186);
background-color: rgb(83, 195, 199);
}
h1{
color: rgb(177, 201, 139);
background-color: rgb(54, 41, 56);
}
body{
background-color: rgb(208, 194, 221);
}
</style>
</head>
<body>
<header>
</header>
<main>
<h1>class 1 lab</h1>
<article>
<p id=firstp>please enter your name?</p>
<p id=secp>what is your favert food?</p>
<p id=therdp>what is your fav color?</p>
<p id=fourthp>please enter your age?</p>
</article>
</main>
<footer>
</footer>
<script src="app.js"></script>
</body>
</html>