-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (51 loc) · 1.62 KB
/
index.html
File metadata and controls
63 lines (51 loc) · 1.62 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>HTML CSS JAVASCRIPT</title>
<style>
#firstItem {
text-align: center;
background-color: rgb(218, 111, 111);
}
#firstItem a {
text-align: center;
text-decoration: none;
color: rgb(71, 194, 173);
}
.listItems {
text-align: center;
text-decoration: none;
background-color: rgba(185, 105, 67, 0.644);
}
</style>
</head>
<body>
<header>
<h1>HTML CSS JAVASCRIPT</h1>
<nav>
<ul>
<li id="firstItem"><a href="#">Home</a></li>
<li class="listItems"><a href="#">About</a></li>
<li class="listItems"><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<main>
<article>
<p style="color: rgb(136, 32, 32);">what is your name?</p>
<p>here we will learn about HTML, CSS and JAVASCRIPT</p>
<p>how do describe your level in coding?</p>
<img src="https://acumbamail.com/blog/wp-content/uploads/2014/10/maquetacion-email-html.png">
<img src="https://miro.medium.com/max/600/1*OFsc0SD55jhi8cjo7aCA4w.jpeg">
<img src="https://data-flair.training/blogs/wp-content/uploads/sites/2/2019/02/JavaScript-Tutorial.jpg">
</article>
</main>
<footer>
© ASAC 2021
</footer>
<script>
// prompt('welcome all, are you having good time?');
</script>
<script src="app.js"></script>
</body>
</html>