-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (120 loc) · 4.7 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
<!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>Garden-Variety Landing Page</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="site-head">
<div class="inner-wrapper">
<a href="#" class="logo">Logo</a>
<nav class="site-nav">
<ul>
<li>
<a href="#" class="nav-link">One</a>
</li>
<li>
<a href="#" class="nav-link">Two</a>
</li>
<li>
<a href="#" class="nav-link">Three</a>
</li>
</ul>
</nav>
</div>
</header>
<main>
<section class="intro">
<div class="inner-wrapper">
<div class="intro-left">
<h1 class="hero-title">
This website is garden-variety
</h1>
<p class="hero-secondary">
Typical, ordinary, run-of-the-mill, predictable...
</p>
<button type="button">
Sign Up
</button>
</div>
<div class="intro-right">
<img src="images/green.jpeg" alt="Boring hero" class="hero-img">
</div>
</section>
<section class="offerings">
<div class="inner-wrapper">
<h2 class="offering-header">Characterless content</h2>
<ul class="cards">
<li class="card card-one">
<figure>
<div class="box"></div>
<figcaption>
<p>It was the best of times, it was the worst of times</p>
</figcaption>
</figure>
</li>
<li class="card card-two">
<figure>
<div class="box"></div>
<figcaption>
<p>It was the age of wisdom, it was the age of foolishness</p>
</figcaption>
</figure>
</li>
<li class="card card-three">
<figure>
<div class="box"></div>
<figcaption>
<p>It was the epoch of belief, it was the epoch of incredulity</p>
</figcaption>
</figure>
</li>
<li class="card card-four">
<figure>
<div class="box"></div>
<figcaption>
<p>It was the season of Light, it was the season of Darkness</p>
</figcaption>
</figure>
</li>
</ul>
</div>
</div>
</section>
<article class="testimonial">
<div class="inner-wrapper">
<blockquote>
<p class="quote">Hey. I'm average.</p>
<p class="cite">–<cite="https://c.tenor.com/AZvg1tReJyMAAAAC/hey-i%27m-average..gif">Cory Matthews, Boy Meets World</p></cite>
</blockquote>
</div>
</article>
<aside class="cta">
<div class="inner-wrapper">
<div class="cta-card">
<div class="cta-left">
<h2>
Call to action! It's time!
</h2>
<p>Sign up for our middle-of-the-road product!</p>
</div>
<div class="cta-right">
<button type="button">
Sign Up
</button>
</div>
</div>
</div>
</aside>
</main>
<footer class="site-foot">
<div class="inner-wrapper">
<p><small>Copyright ©️ Garden-Variety Landing Page 2021</small></p>
<p><small>Made by @<a href="https://jewell.dev">Jewell</a></small></p>
</div>
</footer>
</body>
</html>