-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
178 lines (131 loc) · 4.36 KB
/
index.html
File metadata and controls
178 lines (131 loc) · 4.36 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | Clipboard landing page</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
</head>
<body>
<section class="header-sec">
<div class="header">
<div class="header-background-img">
<img class="pc-bac" src="images/bg-header-desktop.png">
<img class="mobile-bac" src="images/bg-header-mobile.png">
</div>
<div class="logo">
<img src="images/logo.svg">
</div>
<div class="text-box">
<h1>A history of everything you copy</h1>
<p>Clipboard allows you to track and organize everything you
copy. Instantly access your clipboard on all your devices.</p>
</div>
<div class="buttons">
<a href="#" class="b1">Download for Mac</a>
<a href="#" class="b2">Download for iOS</a>
</div>
</div>
</section>
<section class="sec2">
<header>
<h1>Keep track of your snippets</h1>
<p>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>
</header>
<div class="lift">
<img src="images/image-computer.png">
</div>
<div class="right">
<div class="container">
<div class="box">
<h1>Quick Search</h1>
<p>Easily search your snippets by content, category, web address, application, and more.</p>
</div>
<div class="box">
<h1>iCloud Sync</h1>
<p>Instantly saves and syncs snippets across all your devices.</p>
</div>
<div class="box">
<h1>Complete History</h1>
<p>Retrieve any snippets from the first moment you started using the app.</p>
</div>
</div>
</div>
</section>
<section class="sec3">
<div class="header">
<h1>Access Clipboard anywhere</h1>
<p>Whether you’re on the go, or at your computer, you can access all your Clipboard
snippets in a few simple clicks.</p>
</div>
<div class="img-container">
<img src="images/image-devices.png">
</div>
</section>
<section class="sec4">
<div class="header">
<h1>Supercharge your workflow</h1>
<p>We’ve got the tools to boost your productivity.</p>
</div>
<div class="main-content">
<div class="box">
<img src="images/icon-blacklist.svg">
<h1>Create blacklists</h1>
<p>Ensure sensitive information never makes its way to your clipboard by excluding certain sources.</p>
</div>
<div class="box">
<img src="images/icon-text.svg">
<h1>Plain text snippets</h1>
<p>Remove unwanted formatting from copied text for a consistent look.</p>
</div>
<div class="box">
<img src="images/icon-preview.svg">
<h1>Sneak preview</h1>
<p>Quick preview of all snippets on your Clipboard for easy access.</p>
</div>
</div>
<div class="icon-box">
<img src="images/logo-google.png">
<img src="images/logo-ibm.png">
<img src="images/logo-microsoft.png">
<img src="images/logo-vector-graphics.png">
<img src="images/logo-hp.png">
</div>
</section>
<div class="sec5">
<div class="header">
<h1>Clipboard for iOS and Mac OS</h1>
<p>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>
<div class="buttons">
<a href="#" class="b1">Download for Mac</a>
<a href="#" class="b2">Download for iOS</a>
</div>
</div>
<div class="sec6">
<div class="icon">
<img src="images/logo.svg">
</div>
<div class="link-container">
<a href="#">FAQs</a>
<a href="#">Contact Us</a>
<a href="#">Privacy Policy</a>
<a href="#">Press Kit</a>
<a href="#">Install Guide</a>
</div>
<div class="soical">
<a href=""><img src="images/icon-facebook.svg"></a>
<a href=""><img src="images/icon-instagram.svg"></a>
<img src="images/icon-twitter.svg">
</div>
</div>
</body>
</html>