forked from Liam-JL/odin-landing-page
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
124 lines (116 loc) · 4.75 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">
<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=Roboto:ital,wght@0,400;0,700;1,300&display=swap" rel="stylesheet">
<link rel="stylesheet", href="styles/base.css">
<link rel="stylesheet", href="styles/colors.css">
<link rel="stylesheet", href="styles/layout.css">
<link rel="stylesheet", href="styles/style.css">
</head>
<!-- <body class="debug"> -->
<body>
<header class="primary">
<div class="wrapper">
<div class="logo">Header Logo</div>
<nav>
<a href=".">header link one</a>
<a href=".">header link two</a>
<a href=".">header link three</a>
</nav>
</div>
</header>
<main>
<section class="primary row">
<div class="hero">
<div class="hero__content">
<h1 class="hero__heading">
This website is awesome
</h1>
<p class="hero__text low-contrast">
This website has some subtext that goes here under the main title. It's a smaller font and the color is a lower contrast
</p>
<button class="tertiary">
Sign up
</button>
</div>
<div class="hero__image">
<!-- Photo by <a href="https://unsplash.com/@neom?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">NEOM</a> on <a href="https://unsplash.com/photos/a-couple-of-people-standing-on-top-of-a-mountain-0SUho_B0nus?utm_content=creditCopyText&utm_medium=referral&utm_source=unsplash">Unsplash</a> -->
<!-- Where should I credit images? -->
<img src="images/hiker_in_sunset.jpg" alt="Hiker in sunset">
</div>
</div>
</section>
<section class="secondary information">
<h2 class="information-heading">Some random information.</h2>
<div class="gallery low-contrast">
<div class="gallery__item">
<div class="gallery__image contrast">
💻
</div>
<p class="gallery__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="gallery__item">
<div class="gallery__image contrast">
🕥
</div>
<p class="gallery__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="gallery__item">
<div class="gallery__image contrast">
⛺
</div>
<p class="gallery__text">
This is some subtext under an illustration or image
</p>
</div>
<div class="gallery__item">
<div class="gallery__image contrast">
🏠
</div>
<p class="gallery__text">
This is some subtext under an illustration or image
</p>
</div>
</div>
</section>
<section class="secondary alt">
<div class="testimonial">
<p class="testimonial__quote">
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.
</p>
<p class="testimonial__author">
-Thor, God of Thunder
</p>
</div>
</section>
<section class="secondary">
<div class="cta tertiary">
<div class="cta__content">
<h2 class="cta__heading">
Call to action! It's time!
</h2>
<p class="cta__content">
Sign up for our product by clicking that button right over there!
</p>
</div>
<button class="cta__button tertiary">
Sign up
</button>
</div>
</section>
</main>
<footer class="primary">
<p>
Copyright © The Odin Project 2021
</p>
</footer>
</body>
</html>