-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
151 lines (121 loc) · 5.03 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!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="stylesheet" href="./css/main.css">
<title>Maker</title>
</head>
<body>
<header class="header">
<div class="header--top">
<img src="./images/logo.svg" alt="Maker">
</div>
<div class="header--mobile"></div>
<div class="header--left"></div>
<div class="header--right"></div>
<section class="header--body">
<h1>Get paid for the work you <span>love</span> <br class="break">to do.</h1>
<p>
The 9-5 grind is so last century. We believe in living life on your own terms. Whether you’re looking to
escape the rat race or set up a side hustle, we’ve got you covered.
</p>
<div class="scroll"></div>
</section>
</header>
<main class="home">
<section class="home--one">
<div class="home--one--card home--one--card--one">
<div class="img-cont">
<img src="./images/illustration-passions.svg" alt="">
</div>
<h2>Indulge your passions</h2>
<p>Your passions shouldn't be just for the weekend. Earn a living doing what you love.</p>
</div>
<div class="home--one--card home--one--card--two">
<div class="img-cont">
<img src="./images/illustration-financial-freedom.svg" alt="">
</div>
<h2>Gain financial freedom</h2>
<p>Start making money work for you. There’s nothing quite like earning while you sleep.</p>
</div>
<div class="home--one--card home--one--card--three">
<div class="img-cont">
<img src="./images/illustration-lifestyle.svg" alt="">
</div>
<h2>Choose your lifestyle</h2>
<p>
Own your daily schedule. Fancy a lie-in? Go for it! Take charge of your week.
</p>
</div>
<div class="home--one--card home--one--card--four">
<div class="img-cont">
<img src="./images/illustration-work-anywhere.svg" alt="">
</div>
<h2>Work from anywhere</h2>
<p>
Selling online means not being pinned down. Want to work AND travel? Go for it!
</p>
</div>
</section>
<section class="home--two">
<div class="home--two--A">
<h2>Our pricing plans</h2>
<p>
We only make money when our creators make money. Our plans are always affordable, and it’s
completely free to get started.
</p>
</div>
<div class="price-cards">
<div class="home--two--B price-card price-card--dark">
<h3>Dip your toe</h3>
<p>
Just getting started? No problem at all! Our free plan will take you a long way.
</p>
<p class="price">
Free
</p>
<ul>
<li>Unlimited products</li>
<li>Basic analytics</li>
<li>Limited marketplace exposure</li>
<li>10% fee per transaction</li>
</ul>
</div>
<div class="home--two--C price-card price-card--light">
<h3>Dive right in</h3>
<p>
Ready for the big time? Our paid plan will help you take your business to the next level.
</p>
<p class=price>
$25.00 <span>/ month</span>
</p>
<ul>
<li>Custom domain</li>
<li>Advanced analytics and reports</li>
<li>High marketplace visibility</li>
<li>5% fee per transaction</li>
</ul>
</div>
</div>
</section>
</main>
<footer>
<div class="container">
<h2>Get notified when we launch</h2>
<div id="cta" class="cta">
<div class="form">
<textarea aria-label="email address" name="email" id="email" class='email' cols="30" rows="1"
placeholder="Email address"></textarea>
<p class="notice">Oops! That doesn’t look like an email address</p>
</div>
<button id="submit" class="btn" aria-label="get notified">
Get notified
</button>
</div>
</div>
</footer>
</body>
<script src="./js/main.js"></script>
</html>