-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
217 lines (205 loc) · 5.62 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
<!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"
/>
<title>Frontend Mentor | Fylo landing page with two column layout</title>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.12.1/css/all.min.css"
/>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<header>
<div class="container">
<nav>
<img src="./images/logo.svg" alt="logo" />
<ul>
<li>
<a href="#">
Features
</a>
</li>
<li>
<a href="#">
Sign In
</a>
</li>
<li>
<a href="#">
Team
</a>
</li>
</ul>
</nav>
<div class="flex">
<div>
<h1>
All your files in one secure location, accessible anywhere.
</h1>
<p>
Fylo stores your most important files in one secure location.
Access them wherever you need, share and collaborate with friends,
family, and co-workers.
</p>
<form>
<input type="email" placeholder="Enter your email..." />
<button>
Get Started
</button>
</form>
</div>
<div>
<img
class="illustration"
src="./images/illustration-1.svg"
alt="header-img"
/>
</div>
</div>
</div>
</header>
<section class="light-blueish">
<div class="container">
<div class="flex">
<div>
<h2>Stay productive, wherever you are</h2>
<p>
Never let location be an issue when accessing your files. Fylo has
you covered for all of your file storage needs.
</p>
<p>
Securely share files and folders with friends, family and
colleagues for live collaboration. No email attachments required!
</p>
<a class="green" href="#">
See how Fylo works
<img src="./images/icon-arrow.svg" alt="arrow" />
</a>
<div class="testimonial-box">
<img src="./images/icon-quotes.svg" alt="quote" />
<p>
Fylo has improved our team productivity by an order of
magnitude. Since making the switch our team has become a
well-oiled collaboration machine.
</p>
<div class="user-info">
<div>
<img src="./images/avatar-testimonial.jpg" alt="user" />
</div>
<div>
<h4>
Kyle Burton
</h4>
<small>
Founder & CEO, Huddle
</small>
</div>
</div>
</div>
</div>
<div>
<img
class="illustration"
src="./images/illustration-2.svg"
alt="section-img"
/>
</div>
</div>
</div>
</section>
<section class="blueish">
<div class="container">
<div class="flex">
<div>
<h2>
Get early access today
</h2>
<p>
It only takes a minute to sign up and our free starter tier is
extremely generous. If you have any questions, our support team
would be happy to help you.
</p>
</div>
<div>
<form>
<input type="email" placeholder="[email protected]" />
<button>
Get Started For Free
</button>
</form>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<img src="./images/logo.svg" alt="logo" />
<div class="flex align-start">
<ul>
<li>
+1-543-123-4567
</li>
<li>
</li>
</ul>
<ul>
<li>
About Us
</li>
<li>
Jobs
</li>
<li>
Press
</li>
<li>
Blog
</li>
</ul>
<ul>
<li>
Career
</li>
<li>
Terms
</li>
<li>
Privacy
</li>
</ul>
<ul class="social-media">
<li>
<a class="circle" href="#">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a class="circle" href="#">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a class="circle" href="#">
<i class="fab fa-instagram"></i>
</a>
</li>
</ul>
</div>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Nauman Ahmad</a>.
</p>
</div>
</footer>
</body>
</html>