-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
237 lines (228 loc) · 8.5 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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon feature__icon"
type="image/png"
sizes="32x32"
href="./images/favicon feature__icon-32x32.png"
/>
<title>Frontend Mentor | Clipboard landing page</title>
<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=Bai+Jamjuree:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/styles.css" />
</head>
<body>
<main>
<section class="block block--hero">
<div class="container">
<svg class="icon icon--logo">
<use xlink:href="/images/svg-sprite/sprite.svg#logo"></use>
</svg>
<h1 class="h1">A history of everything you copy</h1>
<p class="block--hero__p">
Clipboard allows you to track and organize everything you copy.
Instantly access your clipboard on all your devices.
</p>
<div class="btn-flex">
<a class="btn btn--primary">Download for iOS</a>
<a class="btn btn--secondary">Download for Mac</a>
</div>
</div>
</section>
<section class="block block--feature">
<div class="container container--feature">
<div class="block__header center-text">
<h2 class="block__heading">Keep track of your snippets</h2>
<p class="block__heading-para more-line-height">
Clipboard instantly stores any item you copy in the cloud, meaning
you can access your snippets immediately on all your devices. Our
Mac and iOS apps will help you organize everything.
</p>
</div>
<div class="grid grid--2-cols grid--feature">
<div class="image-col">
<img
class="feature-img feature-img--1"
src="images/image-computer.png"
alt="Computer with a tick inside"
/>
</div>
<ul class="feature feature--1">
<li>
<h3 class="feature__heading">Quick Search</h3>
<p class="feature__para">
Easily search your snippets by content, category, web address,
application, and more.
</p>
</li>
<li>
<h3 class="feature__heading">iCloud Sync</h3>
<p class="feature__para more-line-height">
Instantly saves and syncs snippets across all your devices.
</p>
</li>
<li>
<h3 class="feature__heading">Complete History</h3>
<p class="feature__para more-line-height">
Retrieve any snippets from the first moment you started using
the app.
</p>
</li>
</ul>
</div>
</div>
</section>
<section class="block block--devices">
<div class="container container--devices">
<div class="block__header center-text">
<h2 class="block__heading">Access Clipboard anywhere</h2>
<p class="block__heading-para more-line-height">
Whether you’re on the go, or at your computer, you can access all
your Clipboard snippets in a few simple clicks.
</p>
</div>
<img
class="devices-img"
src="images/image-devices.png"
alt="Mobile phone and desktop screen side by side and in sync"
/>
</div>
</section>
<section class="block block--3-col-feature">
<div class="container">
<div class="block__header center-text">
<h2 class="block__heading">Supercharge your workflow</h2>
<p class="block__heading-para more-line-height">
We’ve got the tools to boost your productivity.
</p>
</div>
<ul class="feature feature--flexed grid grid--3-cols center-text">
<li>
<svg class="icon feature__icon">
<use xlink:href="/images/svg-sprite/sprite.svg#blacklist"></use>
</svg>
<h3 class="feature__heading">Create blacklists</h3>
<p class="feature__para">
Ensure sensitive information never makes its way to your
clipboard by excluding certain sources.
</p>
</li>
<li>
<svg class="icon feature__icon">
<use xlink:href="/images/svg-sprite/sprite.svg#text"></use>
</svg>
<h3 class="feature__heading">Plain text snippets</h3>
<p class="feature__para more-line-height">
Remove unwanted formatting from copied text for a consistent
look.
</p>
</li>
<li>
<svg class="icon feature__icon icon__preview">
<use xlink:href="/images/svg-sprite/sprite.svg#preview"></use>
</svg>
<h3 class="feature__heading">Sneak preview</h3>
<p class="feature__para more-line-height">
Quick preview of all snippets on your Clipboard for easy access.
</p>
</li>
</ul>
</div>
</section>
<section class="block block--brands">
<div class="container container--brands">
<img
class="icon__brand"
src="/images/logo-google.png"
alt="Google logo"
/>
<img class="icon__brand" src="/images/logo-ibm.png" alt="IBM logo" />
<img
class="icon__brand"
src="/images/logo-microsoft.png"
alt="Microsoft logo"
/>
<img
class="icon__brand"
src="/images/logo-hp.png"
alt="HP logo with full form"
/>
<img
class="icon__brand"
src="/images/logo-vector-graphics.png"
alt="Vector Graphics"
/>
</div>
</section>
<section class="block block--cta">
<div class="container">
<div class="block__header center-text no-margin-bottom">
<h2 class="block__heading">Clipboard for iOS and Mac OS</h2>
<p class="block__heading-para more-line-height">
Available for free on the App Store. Download for Mac or iOS, sync
with iCloud and you’re ready to start adding to your clipboard.
</p>
<div class="btn-flex">
<a class="btn btn--primary">Download for iOS</a>
<a class="btn btn--secondary">Download for Mac</a>
</div>
</div>
</div>
</section>
</main>
<footer class="block footer">
<div class="container container--footer">
<svg class="icon icon--logo">
<use xlink:href="/images/svg-sprite/sprite.svg#logo"></use>
</svg>
<ul class="footer__links grid grid--3-cols">
<li class="no-margin-bottom">
<a href="" class="link footer__link">FAQs</a>
</li>
<li class="no-margin-bottom">
<a href="" class="link footer__link">Privacy Policy</a>
</li>
<li class="no-margin-bottom">
<a href="" class="link footer__link">Install Guide</a>
</li>
<li class="no-margin-bottom">
<a href="" class="link footer__link">Contact Us</a>
</li>
<li class="no-margin-bottom">
<a href="" class="link footer__link">Press Kit</a>
</li>
</ul>
<ul class="socials">
<li>
<a href="">
<svg class="icon icon--logo social-icon">
<use xlink:href="/images/svg-sprite/sprite.svg#facebook"></use>
</svg>
</a>
</li>
<li>
<a href="">
<svg class="icon icon--logo social-icon">
<use xlink:href="/images/svg-sprite/sprite.svg#twitter"></use>
</svg>
</a>
</li>
<li>
<a href="">
<svg class="icon icon--logo social-icon">
<use xlink:href="/images/svg-sprite/sprite.svg#instagram"></use>
</svg>
</a>
</li>
</ul>
</div>
</footer>
</body>
</html>