-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
115 lines (106 loc) · 4.46 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
<!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 | Fylo landing page with two column layout</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
<style>
.attribution { font-size: 11px; text-align: center; background-color:hsl(243, 87%, 12%); margin: 0 auto;color: hsl(228, 37%, 89%);}
.attribution a { color: hsl(228, 37%, 89%); }
</style>
<script src="https://kit.fontawesome.com/37cff6aa80.js" crossorigin="anonymous"></script>
</head>
<body>
<header class="container">
<img src="images/logo.svg" alt="logo">
<nav>
<a href="#">Features</a>
<a href="#">Team</a>
<a href="#">Sign In</a>
</nav>
</header>
<section class="welcome container flex">
<div>
<h1>All your files in one secure location, accessible anywhere.</h1>
<h3>Fylo stores your most important files in one secure location.
Access them wherever you need, share and collaborate with friends,
family, and co-workers.</h3>
<input type="text" class="welcome__email" name="welcome__email" placeholder="Enter your email..." aria-label="Email Address">
<input type="button" value="Get Started" class="start-button">
</div>
<img src="images/illustration-1.svg" alt="files" class="illustration">
</section>
<section class="pitch">
<div class="container flex test">
<div class="pitch__sale">
<h1>Stay productive, wherever you are</h1>
<h4>Never let location be an issue when accessing your files. Fylo has you
covered for all of your file storage needs.</h4>
<h4>Securely share files and folders with friends, family and colleagues for
live collaboration. No email attachments required!</h4>
<a href="#" class="pitch__demo">See how Fylo works <span class="arrow-img" /></a>
<div class="testimonial">
<img src="images/icon-quotes.svg" alt="quote icon">
<p class="testimonial__quote">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__user">
<img src="images/avatar-testimonial.jpg" alt="testimonial user">
<div>
<h4>Kyle Burton</h4>
<p>Founder & CEO, Huddle</p>
</div>
</div>
</div>
</div>
<img src="images/illustration-2.svg" alt="productivity" class="illustration">
</div>
</section>
<section class="cta">
<div class="container flex">
<div class="cta__headings">
<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 class="cta__form">
<input type="text" class="welcome__email" placeholder="email@example.com" name="cta__email" aria-label="Email Address">
<input type="button" value="Get Started For Free" class="start-button">
</div>
</div>
</section>
<footer>
<div class="container">
<img src="images/logo-footer.svg" alt="logo">
<div class="footer__nav flex">
<div class="footer__contact">
<span class="icon-phone">Phone: +1-543-123-4567</span>
<span class="icon-email">email@fylo.com</span>
</div>
<div class="footer__links flex">
<a href="#">About Us</a>
<a href="#">Jobs</a>
<a href="#">Press</a>
<a href="#">Blog</a>
</div>
<div class="footer__links flex">
<a href="#">Contact Us</a>
<a href="#">Terms</a>
<a href="#">Privacy</a>
</div>
<div class="footer__social">
<i class="fab fa-facebook-f icon-border"></i>
<i class="fab fa-twitter icon-border"></i>
<i class="fab fa-instagram icon-border"></i>
</div>
</div>
</div>
</footer>
<p class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Muhammad Bilal</a>.
</p>
</body>
</html>