-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
136 lines (121 loc) · 5.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.4/css/all.css" integrity="sha384-DyZ88mC6Up2uqS4h/KRgHuoeGwBcD4Ng9SiP4dIRy0EXTlnuz47vAwmeGwVChigm" crossorigin="anonymous">
<title>Frontend Mentor | Fylo landing page with two column layout</title>
<style>
.attribution { font-size: 11px; text-align: center; margin-top: 1.5rem;}
.attribution a { color: white }
.attribution a:hover{text-decoration: none; color: skyblue;}
</style>
</head>
<body>
<nav>
<a href="#" aria-label="logo"><img src="./images/logo.svg" alt="logo" class="logo"></a>
<ul id="nav-links">
<li><a href="#features" aria-label="features">Features</a></li>
<li><a href="#team" aria-label="team">Team</a></li>
<li><a href="#sign-in" aria-label="sign-in">Sign In</a></li>
</ul>
</nav>
<main>
<!-- first-column -->
<div class="column" id="features">
<section>
<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>
<form action="#" id="form-one">
<div class="infield">
<input type="text" placeholder="Enter your email..." id="input-one">
<p id="error-one">Please check your email</p>
</div>
<button type="submit">Get Started</button>
</form>
</section>
<img src="./images/illustration-1.svg" alt="illustration-1">
</div>
<!-- second-column -->
<div class="column two" id="team">
<section>
<h1>Stay productive, wherever you are</h1>
<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="#" aria-label="arrow-icon">See how Fylo works<img src="./images/icon-arrow.svg" alt="icon-arrow"></a>
<div class="text-box">
<img src="./images/icon-quotes.svg" alt="icon-quotes">
<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="profile-section">
<img src="./images/avatar-testimonial.jpg" alt="avatar-testimonial">
<div class="profile">
<span id="name">Kyle Burton</span>
<span id="position">Founder & CEO, Huddle</span>
</div>
</div>
</div>
</section>
<img src="./images/illustration-2.svg" alt="illustration-2">
</div>
</main>
<!-- early-access -->
<div class="early-access" id="sign-in">
<section>
<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>
</section>
<form action="#" id="form-two">
<div class="infield">
<input type="text" placeholder="Enter your email address" id="input-two">
<p id="error-two">Please check your email</p>
</div>
<button type="submit">Get Started For Free</button>
</form>
</div>
<!-- footer- -->
<footer>
<a href="#" aria-label="logo"><img src="./images/logo.svg" alt="logo" class="logo"></a>
<div class="links">
<div class="footer">
<div class="phone">
<img src="./images/icon-phone.svg" alt="icon-phone">
<span>Phone: +1-543-123-4567</span>
</div>
<div class="email">
<img src="./images/icon-email.svg" alt="icon-email">
<a href="#" aria-label="email">example@fylo.com</a>
</div>
</div>
<div class="footer">
<a href="#" aria-label="about us">About Us</a>
<a href="#" aria-label="jobs">Jobs</a>
<a href="#" aria-label="press">Press</a>
<a href="#" aria-label="blog">Blog</a>
</div>
<div class="footer">
<a href="#" aria-label="contact us">Contact Us</a>
<a href="#" aria-label="terms">Terms</a>
<a href="#" aria-label="privacy">Privacy</a>
</div>
<div class="media-icons footer">
<a href="#" aria-label="facebook"><i class="fab fa-facebook-f"></i></a>
<a href="#" aria-label="twitter"><i class="fab fa-twitter"></i></a>
<a href="#" aria-label="instagram"><i class="fab fa-instagram"></i></a>
</div>
</div>
<div class="attribution">
<p>Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#" aria-label="developer's_name">Biplob Barua Rocky</a>.</p>
</div>
</footer>
<script src="app.js"></script>
</body>
</html>