-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
122 lines (96 loc) · 4.38 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html>
<head>
<title>The Odin Project</title>
<meta charset="utf-8">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<section class="nav-bar">
<div class="logo">Header Logo</div>
<ul class="header-links-list">
<li>header link one</li>
<li>header link two</li>
<li>header link three</li>
</ul>
</section>
<section class="header-content">
<div class="header-text">
<h1 class="header-main-text">This website is awesome</h1>
<p>This website has some subtext that goes here under the main title. It's a smaller font and the color is lower contrast</p>
<button class="sign-up-btn df-btn">Sign up</button>
</div>
<div class="header-image">IMAGE PLACEHOLDER</div>
</section>
</header>
<main>
<section class="main-section main-one">
<div class="main-one-header">
<h1>Some random information.</h1>
</div>
<div class="main-one-image-container">
<div class="main-one-image-text-container">
<div class="main-one-image-text-image">
</div>
<div class="main-one-image-text-text">
<p>Lorem ipsum dolor sit amet, sed labore et dolore.</p>
</div>
</div>
<!-- -->
<div class="main-one-image-text-container">
<div class="main-one-image-text-image">
</div>
<div class="main-one-image-text-text">
<p>Lorem ipsum dolor sit amet, sed labore et dolore.</p>
</div>
</div>
<!-- -->
<div class="main-one-image-text-container">
<div class="main-one-image-text-image">
</div>
<div class="main-one-image-text-text">
<p>Lorem ipsum dolor sit amet, sed labore et dolore.</p>
</div>
</div>
<!-- -->
<div class="main-one-image-text-container">
<div class="main-one-image-text-image">
</div>
<div class="main-one-image-text-text">
<p>Lorem ipsum dolor sit amet, sed labore et dolore.</p>
</div>
</div>
</div>
</section>
<!--
-->
<section class="main-section main-two">
<div class="main-two-container">
<div class="main-two-quote">
<p><i>Inspiring quote? A testimonial from a costumer? Maybe just filling up space, or maybe someone might actually read it. Who knows and who cares? All I know is that it looks nice.</i></p>
<p class="sayer">-GOD (probably)</p>
</div>
<div class="main-two-source">
</div>
</div>
</section>
<section class="main-section main-three">
<div class="main-three-container">
<div class="main-three-text">
<h2 class="call-to-action">Call to action! It's time!</h2>
<p class="call-to-action-text">
Sign up for my product bt clicking this button!
</p>
</div>
<div class="main-three-button">
<button class="main-three-btn df-btn">THIS ONE</button>
</div>
</div>
</section>
</main>
<footer>
<p><strong>Aimen Tetbirt</strong> <i>The Odin Project 2022</i></p>
</footer>
</body>
</html>