-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
70 lines (68 loc) · 2.46 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
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Landing Page Project</title>
<link rel="stylesheet" type="text/css" href="styles.css"/>
</head>
<body>
<div class="header">
<div class="Logo">Header Logos</div>
<ul class="right-links">
<li><a href="#">Header Link One</a></li>
<li><a href="#">Header Link Two</a></li>
<li><a href="#">Header Link Three</a></li>
</ul>
</div>
<div class="hero_banner">
<div class="left_hero">
<div class="hero_text">This Website is Awesome</div>
<div class="hero_secondary">This website has some smaller text that
goes under the main text. it has less contrast, and is here because that's how things work.</div>
<button class="hero_button">Sign Up</button>
</div>
<div class="right_hero">
<img src="images/hotties.png" alt="hotties">
</div>
</div>
<div class="second_banner">
<div class="random"> Some Random Information</div>
<div class="list_random">
<div class="one">
<img src="images/smoke1.png" alt="smokin">
<p>This is some subtext under an illustrated image</p>
</div>
<div class="one">
<img src="images/smoke2.png" alt="smokin">
<p>This is some subtext under an illustrated image</p>
</div>
<div class="one">
<img src="images/smoke3.png" alt="smokin">
<p>This is some subtext under an illustrated image</p>
</div>
<div class="one">
<img src="images/smoke4.png" alt="smokin">
<p>This is some subtext under an illustrated image</p>
</div>
</div>
</div>
</div>
<div class="third_banner">
<p>I swear to god that none of this is real, and i'm not a fucking liar, hehe :P</p>
<div class="chet">-Chet Hanks</div>
</div>
<div class="fourth_banner">
<div class="left_call">
<div class="call">Call to Action</div>
<div class="call_subtext">Here is some smaller text underneath the call</div>
</div>
<div class="right_call">
<button class="call_button">Sign Up</button>
</div>
</div>
<div class="footer">
<p>Copywrite @ The Odin Project</p>
</div>
</body>
</html>