-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
84 lines (84 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!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" />
<title>Assignment</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<nav>
<div class="container">
<p class="logo">Header Logo</p>
<ul class="burger">
<li><a href="#">header link one</a></li>
<li><a href="#">header link one</a></li>
<li><a href="#">header link one</a></li>
</ul>
</div>
</nav>
<header>
<div class="container">
<div>
<div class="leftblockbigwords">
<p class="bigwords">This Website is awesome</p>
<p class="bigwords_sub">
This website has some subtext that goes under the main title. it's
smaller font and the color contrast is lower
</p>
</div>
<button type="submit">Sign Up</button>
</div>
<img
src="https://images.unsplash.com/photo-1574807628013-1b7d14113d8a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1170&q=80"
alt="img of a bridge"
/>
</div>
</header>
<section class="container">
<div><h1>Some Random Information</h1></div>
<div class="container">
<div>
<div class="force_width_height"></div>
<p>this is some subtext under an illustration of image</p>
</div>
<div>
<div class="force_width_height"></div>
<p>this is some subtext under an illustration of image</p>
</div>
<div>
<div class="force_width_height"></div>
<p>this is some subtext under an illustration of image</p>
</div>
<div>
<div class="force_width_height"></div>
<p>this is some subtext under an illustration of image</p>
</div>
</div>
</section>
<section class="quote">
<div class="container">
<p>
Honestly, the text in example is too long to type out. Here's a short
one
</p>
<p>-By anonymous</p>
</div>
</section>
<section>
<div class="container call">
<div>
<p>Call to Action! It's time!<p>
<p>
Sign up for our product by clicking that button right over there
</p>
</div>
<button>Sign Up</button>
</div>
</section>
</body>
<footer>
<p>Copyright © The Odin Project 2021</p>
</footer>
</html>