-
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) · 1.5 KB
/
index.html
File metadata and controls
60 lines (47 loc) · 1.5 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
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<title>welcome to 201 level</title>
<link rel="stylesheet" href="style.css">
<style>
h1{background-color: lightgreen;}
#firstLink {
background-color: rgb(141, 196, 245);
}
#firstLink a {
text-decoration: none;
color: rgb(68, 139, 27);
}
.listLink {
background-color: rgba(0, 255, 255, 0.644);
display: inline;
}
</style>
</head>
<body>
<header>
<nav>
<ul>
<li id="firstLink"><a href="#">Home</a></li>
<li class="listLink"><a href="#">About</a></li>
<li class="listLink"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1>class1 lab</h1>
<article>
<p style="color: rgb(223, 14, 195);background-color: rgb(141, 196, 245)">what is your name?</p>
<p style="color: mediumaquamarine;background-color:rgb(255, 0, 0)">what's your fav color?</p>
<p style="color: rgb(36, 3, 54);background-color:greenyellow">whats your age?</p>
<p style="color: rgb(253, 69, 192);background-color:rgb(109, 108, 107)">whats your fav fruit?</p>
<p>here we will learn about HTML, CSS and JAVASCRIPT</p>
</article>
</main>
<footer>
© ASAC 2021 .Mariam Al-Shammari
</footer>
<script src="js/app.js"></script>
</body>
</html>