-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
234 lines (219 loc) · 9.04 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
<!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"
/>
<!-- bootstrap links -->
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css">
<!-- google links -->
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<!-- main style link -->
<link rel="stylesheet" href="styles.css">
<title>
Frontend Mentor | Fylo landing page with dark theme and features grid
</title>
</head>
<body>
<nav class="navbar navbar-expand ">
<div class="container my-4">
<a class="navbar-brand" href="#">
<img src="images/logo.svg" alt="" />
</a>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav ms-auto ">
<li class="nav-item">
<a class="nav-link active navigation-link" aria-current="page" href="#">Features</a>
</li>
<li class="nav-item ">
<a class="nav-link navigation-link" href="#">Team</a>
</li>
<li class="nav-item">
<a class="nav-link navigation-link" href="#">Sign In</a>
</li>
</li>
</ul>
</div>
</div>
</nav>
<!-- intro section -->
<section class="intro p-5 ">
<div class="container text-white text-center">
<img src="images/illustration-intro.png" alt="" class="img-fluid mb-2">
<h2 class="mb-2 intro-heading ">All your files in one secure location, accessible anywhere.
</h2>
<p class="mb-5 intro-para">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="btn intro-btn">
Get Started</button>
</div>
</section>
<!-- access section -->
<section class="access p-5 ">
<div class="container text-white text-center">
<div class="row access-section">
<div class="col-lg-6 mb-4 ">
<img src="images/icon-access-anywhere.svg" class="img-fluid mb-3" alt="">
<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="col-lg-6 mb-4">
<img src="images/icon-security.svg" class="img-fluid mb-3" alt="">
<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="col-lg-6 mb-4">
<img src="images/icon-collaboration.svg" class="img-fluid mb-3" alt="">
<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="col-lg-6 mb-4">
<img src="images/icon-any-file.svg "class="img-fluid mb-3" alt="">
<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>
</div>
</div>
</section>
<!-- productive section -->
<section class="productive p-5 pb-6 ">
<div class="container text-white ">
<div class="d-lg-flex align-items-center productive-section ">
<img src="images/illustration-stay-productive.png" alt="" class="img-fluid">
<div class="mx-5 my-4">
<h2 class="mb-3">Stay productive, wherever you are</h2>
<p class="mb-3">Never let location be an issue when accessing your files. Fylo has you covered for all of your file
storage needs.</p>
<p class="mb-3"> Securely share files and folders with friends, family and colleagues for live collaboration. No email
attachments required.</p>
<a href="">See how Fylo works <img src="images/icon-arrow.svg" alt=""></a>
</div>
</div>
</div>
</section>
<!-- team section -->
<section class="team ">
<div class="testimonial">
<div class="testimonial-unit">
<p class="testimonial-intro">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-profiles">
<div><img src="images/profile-1.jpg" alt=""></div>
<div>
<p class="profile-name"> Satish Patel</p>
<p class="profile-role">
Founder & CEO, Huddle
</p>
</div>
</div>
</div>
<div class="testimonial-unit">
<p class="testimonial-intro">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-profiles">
<div><img src="images/profile-2.jpg" alt=""></div>
<div>
<p class="profile-name"> Bruce McKenzie</p>
<p class="profile-role">
Founder & CEO, Huddle
</p>
</div>
</div>
</div>
<div class="testimonial-unit">
<p class="testimonial-intro">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-profiles">
<div><img src="images/profile-3.jpg" alt=""></div>
<div>
<p class="profile-name"> Iva Boyd</p>
<p class="profile-role">
Founder & CEO, Huddle
</p>
</div>
</div>
</div>
</div>
</section>
<!-- email asie -->
<aside class="text-white">
<div class="email-area">
<h3 class="mb-3">Get early access today</h3>
<p class="email-paragraph" > 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 class="email-container">
<input type="email" placeholder="[email protected]" id="email" class="input-email">
<button class="email-btn" id="email-btn" > Get Started For Free</button>
</div>
<div class="error" ></div>
</div>
</aside>
<!-- footer section -->
<section class="footer ">
<div class="container footer-content text-white">
<img src="images/logo.svg" alt="">
<div class=" footer address ">
<div class="location">
<img src="images/icon-location.svg" class="img-fluid" alt="">
<p class=""> Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et
dolore magna aliqua</p>
</div>
<div class="email-phone">
<div class="address-phone">
<img src="images/icon-phone.svg" alt="">
<p>+58585858858585</p>
</div>
<div class="address-email">
<img src="images/icon-email.svg" alt="">
<p>[email protected]</p>
</div>
</div>
<div class="footer-about">
<a href="">About us</a>
<a href="">Jobs</a>
<a href="">Press</a>
<a href="">Blog</a>
</div>
<div class="footer-about">
<a href="">Contact us</a>
<a href="">Terms</a>
<a href="">Privacy</a>
</div>
<div class="icons">
<i class="bi bi-facebook"></i>
<i class="bi bi-twitter"></i>
<i class="bi bi-instagram"></i>
</div>
</div>
</div>
</section>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"
></script>
<script src="main.js"></script>
</body>
</html>