-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (124 loc) · 4.88 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
112
113
114
115
116
117
118
119
120
121
122
123
124
<!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="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/style.css" />
<script defer src="/js/script.js"></script>
<title>The Odin Project</title>
</head>
<body>
<header class="header | bg-neutral-900 text-neutral-100">
<div class="header-wrapper | container flex">
<a href="#" class="logo | fw-bold fs-title-sm text-neutral-100">Logo</a>
<button
class="mobile-nav-toggle"
aria-controls="primary-navigation"
aria-expanded="false"
>
<img src="/images/icon-hamburger.svg" class="icon-hamburger" alt="" />
<img src="/images/icon-close.svg" class="icon-close" alt="" />
<span class="visually-hidden">Menu</span>
</button>
<nav class="primary-navigation" id="primary-navigation">
<ul aria-label="primary navigation" class="nav-list">
<li class="nav-link"><a href="#">Home</a></li>
<li class="nav-link"><a href="#">Features</a></li>
<li class="nav-link"><a href="#">Testimonial</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section class="hero | padding-block bg-neutral-900 text-neutral-100">
<div class="hero-wrapper | container even-cloumns">
<div class="hero__body gap-lg">
<h1 class="fw-bold fs-title-lg">This website is awesome</h1>
<p style="max-width: 40ch">
This website has some subtest that goes here under the main title.
It's a smaller font and the color is lower contrast.
</p>
<a href="#" class="btn btn--sign-up">Sign Up</a>
</div>
<div class="hero__image">
<img src="/images/hero-image.png" alt="laptop image" />
</div>
</div>
</section>
<section class="information | padding-block">
<div class="information-wrapper | container">
<h2 class="fw-bold fs-title">Some Random Information</h2>
<div class="info-group">
<div class="info gap-sm">
<div class="info__image">
<img src="/images/image-1.png" alt="image 1" />
</div>
<p class="info__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="info gap-sm">
<div class="info__image">
<img src="/images/image-2.png" alt="image 2" />
</div>
<p class="info__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="info gap-sm">
<div class="info__image">
<img src="/images/image-3.png" alt="image 3" />
</div>
<p class="info__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="info gap-sm">
<div class="info__image">
<img src="/images/image-1.png" alt="image 4" />
</div>
<p class="info__text">
This is some subtext under an illustration or image
</p>
</div>
</div>
</div>
</section>
<section class="testimonial | bg-neutral-300 padding-block">
<div class="testimonial-wrapper | container">
<p class="quote | fw-light">
<i
>This is an inspiring quote, or a testimonial from a customer.
Maybe it's just filling up space, or maybe people will actually
read it. Who knows? All I know is that it looks nice.</i
>
</p>
<span class="quote-by | fw-semi-bold">- Thor, God of Thunder</span>
</div>
</section>
<section class="cta | padding-block">
<div class="cta-wrapper | container bg-primary-400 text-neutral-100">
<div class="cta__body | gap-sm">
<h2 class="fw-bold fs-title-sm">Call to action! It's time!</h2>
<p>
Sign up for out product by clicking that button right over there!
</p>
</div>
<a href="#" class="btn btn--cta">Sign Up</a>
</div>
</section>
</main>
<footer class="primary-footer | bg-neutral-900 text-neutral-100">
<div class="footer-wrapper | container">
<span class="fs-body-sm">Copyright © The Odin Project 2023</span>
</div>
</footer>
</body>
</html>