-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
127 lines (113 loc) · 4.87 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
<!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="./styles/styles.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; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<main class="main-container">
<nav class="navbar">
<img src="./images/logo.svg" alt="fylo-logo" id="logo">
<div class="navbar-buttons">
<input type="button" value="Features" class="nav-button features">
<input type="button" value="Team" class="nav-button team">
<input type="button" value="Sign In" class="nav-button sign-in">
</div>
</nav>
<section class="files-section section--1">
<img src="./images/illustration-1.svg" alt="illustration" id="illustration-1">
<div class="files-section--description">
<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>
</div>
<form class="files-section--form form">
<div class="form-field">
<input type="email" placeholder="Enter your email..." class="input email-input" id="files-section--email">
<small class="inactive"></small>
</div>
<input type="submit" value="Get Started" class="input submit-button" name="files-section--submit">
</form>
</section>
<section class="productivity-section section--2">
<img src="./images/illustration-2.svg" alt="illustration" id="illustration-2">
<div class="productivity-section--description">
<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 href="#" id="arrow-link">See how Fylo works</a>
</div>
<div class="productivity-section--comment">
<p id="comment">
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>
<p id="profile">
<img src="./images/avatar-testimonial.jpg" alt="profile-picture" id="profile-picture">
Kyle Burton
<span id="profile-nouns">Founder & CEO, Huddle</span>
</p>
</div>
</section>
<section class="early-access-section section--3">
<div class="early-access-section--description">
<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>
<form class="early-access-section--form form">
<div class="form-field">
<input type="email" placeholder="email@example.com" class="input email-input" id="early-access-section--email">
<small class="inactive"></small>
</div>
<input type="submit" value="Get started for free" class="input submit-button">
</form>
</section>
<footer class="footer">
<img src="./images/logo-dark.svg" alt="logo" id="logo-dark">
<ul class="contact-information">
<li id="phone-info">Phone: +1-543-123-4567</li>
<li id="email-info">example@fylo.com</li>
</ul>
<ul class="about-us">
<li>About Us</li>
<li>Jobs</li>
<li>Press</li>
<li>Blog</li>
</ul>
<ul class="contact-us">
<li>Contact Us</li>
<li>Terms</li>
<li>Privacy</li>
</ul>
<div class="social-media">
<input type="image" id="facebook" src="images/facebook-f.svg" alt="image-phone" width="20" height="20">
<input type="image" id="twitter" src="images/twitter.svg" alt="image-phone" width="20" height="20">
<input type="image" id="instagram" src="images/instagram.svg" alt="image-phone" width="20" height="20">
</div>
</footer>
</main>
<footer>
<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/S1S4" target="_blank">Cesar Perez</a>.
</p>
</footer>
<script src="./index.js"></script>
</body>
</html>