-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
193 lines (157 loc) · 8.54 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
<!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="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.14.0/css/all.css">
<link rel="stylesheet" type="text/css" href="./styles.css">
<title>Frontend Mentor | Fylo landing page with dark theme and features grid</title>
</head>
<body>
<nav>
<img src="./images/logo.svg" alt="fylo logo">
<ul class="nav-list">
<li class="nav-item"><a href="#features">Features</a></li>
<li class="nav-item"><a href="#team">Team</a></li>
<li class="nav-item"><a href="#signup">Sign In</a></li>
</ul>
</nav>
<div class="hero">
<img src="./images/illustration-intro.png" class="hero-img" alt="intro-img">
<div class="below-svg">
<h1 class="hero-text">All your files in one secure location, accessible anywhere.</h1>
<p class="hero-p">Fylo stores all your most important files in one secure location. Access them wherever you need, share and collaborate with friends family, and co-workers.</p>
<button class="hero-btn">Get Started</button>
</div>
<svg class="desktop" width="1440" height="449" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M0 0h1454v449H0z"/></defs><g transform="translate(-14)" fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path d="M14 413.954c90.836-5.359 176.206-50.375 256.111-135.046C389.968 151.9 364.01 105.164 563.005 148.686 762 192.207 745.05 163.699 873 63.13c127.95-100.57 211-77.554 289 44.667 78 122.222 151 162.895 284 207.778 88.667 29.921 92.03 848.285 10.091 2455.09H14V413.956z" fill="#181F2B" mask="url(#b)"/></g></svg>
<svg class="mobile" width="375" height="141" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><path id="a" d="M0 0h375v141H0z"/></defs><g fill="none" fill-rule="evenodd"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path d="M0 128.937c22.708-1.669 44.049-15.69 64.024-42.063 29.962-39.56 23.473-54.118 73.218-40.562 49.746 13.556 45.508 4.677 77.494-26.648 31.985-31.325 52.746-24.157 72.245 13.912 19.499 38.07 55.147 47.264 88.395 61.244 22.165 9.32 22.165 1296.047 0 3860.18H0V128.937z" fill="#181F2B" mask="url(#b)"/></g></svg>
</div>
<a id="features">
<section class="features two">
<div class="feature-item">
<img src="./images/icon-access-anywhere.svg" alt="access anywhere icon">
<h3>Access your files, anywhere</h3>
<p>The ability to use a smartphone, tablet, or computer to access your account means your
files follow you everywhere.</p>
</div>
<div class="feature-item">
<img src="./images/icon-security.svg" alt="security icon">
<h3>Security you can trust</h3>
<p>2-factor authentication and user-controlled encryption are just a couple of the security
features we allow to help secure your files.</p>
</div>
<div class="feature-item">
<img src="./images/icon-collaboration.svg" alt="collaboration icon">
<h3>Real-time collaboration</h3>
<p>Securely share files and folders with friends, family and colleagues for live collaboration.
No email attachments required.</p>
</div>
<div class="feature-item">
<img src="./images/icon-any-file.svg" alt="any file icon">
<h3>Store any type of file</h3>
<p>Whether you're sharing holidays photos or work documents, Fylo has you covered allowing for all
file types to be securely stored and shared.</p>
</div>
</section>
<section class="feature-2">
<img src="./images/illustration-stay-productive.png" class="feature-2-img" alt="stay productive icon">
<div class="feature-2-aside">
<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>
<p class="link-text"><a href="#">See how Fylo works <img src="./images/icon-arrow.svg" alt="arrow icon"></a></p>
</div>
</section>
</a>
<a id="team">
<img src="./images/bg-quotes.png" alt="quotes image" class="testimonial-quote">
<section class="testimonials">
<div class="testimonial-item">
<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="testimonial-profile">
<img src="./images/profile-1.jpg" alt="testimonial image" class="profile-img">
<div>
<p class="profile-name">Satish Patel</p>
<p class="profile-title">Founder & CEO, Huddle</p>
</div>
</div>
</div>
<div class="testimonial-item">
<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="testimonial-profile">
<img src="./images/profile-2.jpg" alt="testimonial image" class="profile-img">
<div>
<p class="profile-name">Bruce McKenzie</p>
<p class="profile-title">Founder & CEO, Huddle</p>
</div>
</div>
</div>
<div class="testimonial-item">
<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="testimonial-profile">
<img src="./images/profile-3.jpg" alt="testimonial image" class="profile-img">
<div>
<p class="profile-name">Iva Boyd</p>
<p class="profile-title">Founder & CEO, Huddle</p>
</div>
</div>
</div>
</section>
</a>
<div class="container">
<a id="signup">
<section class="signup">
<h2>Get early access today</h2>
<p class="signup-text">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>
<input type="email" name="email" class="signup-input" placeholder="[email protected]">
<button class="hero-btn signup-btn">Get Started For Free</button>
</section>
</a>
<footer>
<img src="./images/logo.svg" alt="fylo logo" class="footer-logo">
<section class="footer-links">
<div class="footer-item item1">
<img src="./images/icon-location.svg">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua</p>
</div>
<div class="footer-item">
<p><img src="./images/icon-phone.svg"> +1-543-123-4567</p>
<p><img src="./images/icon-email.svg"> [email protected]</p>
</div>
<div class="footer-item" >
<p>About Us</p>
<p>Jobs</p>
<p>Press</p>
<p>Blog</p>
</div>
<div class="footer-item">
<p>Contact Us</p>
<p>Terms</p>
<p>Privacy</p>
</div>
<div class="footer-item">
<span style="padding: 10px; border-radius: 50%; border: 2px solid hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);">
<i class="fab fa-facebook-f"></i></span>
<span style="padding: 10px; border-radius: 50%; border: 2px solid hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);">
<i class="fab fa-twitter"></i></span>
<span style="padding: 10px; border-radius: 50%; border: 2px solid hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);"><i class="fab fa-instagram"></i></span>
</div>
</section>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.github.com/maura-dev">Maureen Anyanwu</a>.
</p>
</footer>
</div>
</body>
</html>