-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
231 lines (175 loc) · 9.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- Setting the viewport width to the device's width and initial zoom level to 1 -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Specifies icon image and title of the webpage -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Fylo landing page with dark theme and features grid</title>
<!-- Connection to the font server -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- Font style and URL for the Google Fonts used in the webpage -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<!-- Font-awesome styles and URL for the webpage -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css"
integrity="sha512-MV7K8+y+gLIBoVD59lQIYicR65iaqukzvf/nwasF0nqhPay5w/9lJmVM2hMDcnK1OnMGCdVK+iQrJ7lzPJQd1w=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- Link for the CSS styles used in the webpage -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav class="navbar">
<a href="#" class="logo">
<img src="./images/logo.svg" alt="Fylo logo">
</a>
<ul class="nav-list">
<li><a href="#" class="nav-link">Features</a></li>
<li><a href="#" class="nav-link">Team</a></li>
<li><a href="#" class="nav-link">Sign In</a></li>
</ul>
</nav>
</header>
<main>
<!-- Secure Location Section -->
<section class="sl">
<div class="sl-image">
<img src="./images/illustration-intro.png" alt="illustration of people putting files in a folder">
</div>
<div class="sl-info">
<h1 class="heading">All your files in one secure location, accessible anywhere.</h1>
<p class="sub-heading">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>
</div>
<span class="get-started-btn">
<a href="#" class="btn">Get Started</a>
</span>
</section>
<!-- Features Section -->
<section class="features">
<div class="flex">
<div class="icon"><img src="./images/icon-access-anywhere.svg" alt="illustration of a smartphone on top of a desktop computer"></div>
<div class="features-info">
<h2>Access your files, anywhere</h2>
<p class="features_sub-heading">The ability to use a smartphone, tablet, or computer to access your account means your files follow you everywhere.</p>
</div>
</div>
<div class="flex">
<div class="icon"><img src="./images/icon-security.svg" alt="illustration of a shield with a tick mark"></div>
<div class="features-info">
<h2>Security you can trust</h2>
<p class="features_sub-heading">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>
<div class="flex">
<div class="icon"><img src="./images/icon-collaboration.svg" alt="illustration of people gathered around a clock"></div>
<div class="features-info">
<h2>Real-time collaboration</h2>
<p class="features_sub-heading">Securely share files and folders with friends, family and colleagues for live collaboration. No email attachments required.</p>
</div>
</div>
<div class="flex">
<div class="icon"><img src="./images/icon-any-file.svg" alt="illustration of a folder with small document and image files next to it"></div>
<div class="features-info">
<h2>Store any type of file</h2>
<p class="features_sub-heading">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>
</div>
</section>
<!-- Productivity Section -->
<section class="productivity">
<div class="productivity-image">
<img src="./images/illustration-stay-productive.png" alt="illustration of people holding message cards">
</div>
<div class="productivity-info">
<h2>Stay productive, wherever you are</h2>
<p class="productivity_sub-heading_1">Never let location be an issue when accessing your files. Fylo has you covered for all of your file storage needs.</p>
<p class="productivity_sub-heading_2">Securely share files and folders with friends, family and colleagues for live collaboration. No email attachments required.</p>
<a href="#" class="productivity-link">See how Fylo works</a>
</div>
</section>
<!-- Team Section -->
<section class="team">
<article class="quote-box">
<p class="quote-txt">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="author">
<img src="./images/profile-1.jpg" alt="Satish Patel" class="author-img">
<div class="author-details">
<span class="author-name">Satish Patel</span>
<span class="author-title">Founder & CEO, Huddle</span>
</div>
</div>
</article>
<article class="quote-box">
<p class="quote-txt">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="author">
<img src="./images/profile-2.jpg" alt="Bruce McKenzie" class="author-img">
<div class="author-details">
<span class="author-name">Bruce McKenzie</span>
<span class="author-title">Founder & CEO, Huddle</span>
</div>
</div>
</article>
<article class="quote-box">
<p class="quote-txt">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="author">
<img src="./images/profile-3.jpg" alt="Iva Boyd" class="author-img">
<div class="author-details">
<span class="author-name">Iva Boyd</span>
<span class="author-title">Founder & CEO, Huddle</span>
</div>
</div>
</article>
</section>
<!-- Sign-Up Form Section -->
<section class="signup">
<div class="signup-info">
<h1>Get early access today</h1>
<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 class="signup-form">
<form id="form">
<input type="email" placeholder="email@example.com" id="email-input">
<button type="submit" class="btn" id="signupButton">Get Started For Free</button>
<p id="validation-message"></p>
</form>
</div>
</section>
</main>
<footer>
<a href="#"><img src="./images/logo.svg" alt="Fylo logo" class="footer-logo"></a>
<div class="footer-flex">
<div class="company-location">
<p><span><img src="./images/icon-location.svg" alt="location logo" class="location-logo"></span><span>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</span></p>
</div>
<ul class="company-contact">
<li class="company-meta"><img src="./images/icon-phone.svg" alt="phone logo" class="phone-logo"><span>+1-543-123-4567</span></li>
<li class="company-meta"><img src="./images/icon-email.svg" alt="email logo" class="email-logo"><span><a href="mailto:example@fylo.com" class="email-link">example@fylo.com</a></span></li>
</ul>
<ul class="company-links">
<li><a href="#">About Us</a></li>
<li><a href="#">Jobs</a></li>
<li><a href="#">Press</a></li>
<li><a href="#">Blog</a></li>
</ul>
<ul class="company-links">
<li><a href="#">Contact Us</a></li>
<li><a href="#">Terms</a></li>
<li><a href="#">Privacy</a></li>
</ul>
<div class="company-social">
<a href="#" class="social-logo" aria-label="Facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href="#" class="social-logo" aria-label="Twitter"><i class="fa-brands fa-twitter"></i></a>
<a href="#" class="social-logo" aria-label="Instagram"><i class="fa-brands fa-instagram"></i></a>
</div>
</div>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/Sikta2002" target="_blank">Sikta Mohanty</a>.
</p>
</footer>
<!-- Script tag that links to the main.js file used in the webpage -->
<script src="./main.js"></script>
</body>
</html>