-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (59 loc) · 2.27 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Document</title>
</head>
<body>
<div id="container1">
<nav id="navBar">
<h3 id="brand">Maverick</h3>
<ul id="pages">
<li><a href="#">Project</a></li>
<li><a href="#">Skills</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<div id="heroContent">
<div id="left">
<h1 id="heroTitle">This Website is<br>Awesome</h1>
<p id="heroPara">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Dolorem qui voluptas voluptatibus deleniti asperiores, exercitationem rem ad minus ipsa sit nesciunt excepturi.</p>
<a href="#" id="heroBtn">Sign Up</a>
</div>
<div id="right">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQkxuErveYiJM7XTH0V4u_yLSRO1rj1VZXUTA&usqp=CAU" alt="top gun maverick logo">
</div>
</div>
</div>
<h2 id="random">Some random information</h2>
<div id="container2">
<div></div>
<div></div>
<div></div>
<div></div>
</div>
<div id="container3">
<p>there is some subtext under this illustration or image</p>
<p>there is some subtext under this illustration or image</p>
<p>there is some subtext under this illustration or image</p>
<p>there is some subtext under this illustration or image</p>
</div>
<div id="container4">
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Labore voluptas perferendis officiis doloribus, unde necessitatibus incidunt enim earum officia nisi eos sit laboriosam rem! Facilis optio veniam fuga sit sunt.</p>
<span><strong>--TONY STARK</strong></span>
</div>
<div id="container5">
<div>
<h3>Call to action! It's time!</h3>
<p>Sign up for our product by clicking the button right over there!</p>
<a href="#">Sign Up</a>
</div>
</div>
<footer>
<h3>The Odin Project</h3>
</footer>
</body>
</html>