-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
138 lines (128 loc) · 6.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Fylo landing page</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="styles.css" type="text/css" media="all">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.7/css/all.css">
</head>
<body>
<header>
<div class="navbar">
<img src="images/logo.svg" class="logo" alt="logo">
<div class="rightside-nav">
<a href="">Features</a>
<a href="">Team</a>
<a href="">Sign In</a>
</div>
</div>
</header>
<div class="main-body">
<div class="section1">
<img src="images/illustration-intro.png">
<div class="mountain">
<div class="mountain-text">
<h1>All your files in one secure location, accessible anywhere.</h1>
<h2>Fylo stores all your most important files in one secure location. Access them whenever you need, share and collaborate with
friends, family, and co-workers.</h2>
<button class="get-started">Get Started</button>
</div>
</div>
</div>
<div class="section2">
<div class="features">
<div class="tile-access">
<img src="images/icon-access-anywhere.svg" alt="access">
<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="tile-security">
<img src="images/icon-security.svg" alt="security icon">
<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="tile-real-time">
<img src="images/icon-collaboration.svg" alt="clock icon">
<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="tilestorage">
<img src="images/icon-any-file.svg" alt="storage icon">
<h3>Store any type of file</h3>
<p>Whether you're sharing holidays, photos, or work documents, Fylo as you covered, allowing for all file types to be securely stored and shared.</p>
</div>
</div>
</div>
<div class="section3">
<img src="images/illustration-stay-productive.png" alt="people working">
<div class="sec3text">
<h1>Stay productive, wherever you are</h1>
<p>Never let location be an issue when accessing your files. Fylo has you covered for all your file storage needs.<br><br>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="tiny arrow"></a>
</div>
</div>
<div class="section4">
<div class="quotes">
<img id="quotation" src="images/bg-quotes.png" alt="quotation mark">
</div>
<div class="quote-cards">
<div class="card">
<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>
<img class="profile-pic" src="images/profile-1.jpg" alt="profile pic">
<h5>Satish Patel</h5>
<h6>Founder & CEO, Huddle</h6>
</div>
<div class="card">
<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>
<img class="profile-pic" src="images/profile-2.jpg" alt="profile pic">
<h5>Bruce McKenzie</h5>
<h6>Founder & CEO, Huddle</h6>
</div>
<div class="card">
<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>
<img class="profile-pic" src="images/profile-3.jpg" alt="profile pic">
<h5>Iva Boyd</h5>
<h6>Founder & CEO, Huddle</h6>
</div>
</div>
</div>
<div class="section5">
<div class="contact-box">
<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>
<form><input type="email" id="email" name="email" placeholder="johnappleseed#mail.com"><input id="submit" type="submit" value="Get Started For Free"></form>
</div>
</div>
</div>
<footer>
<div class="left">
<img id="logo"src="images/logo.svg" alt="logo">
<div class="left2">
<img id="pin" src="images/icon-location.svg" alt="location pin">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua</p>
</div>
</div>
<div class="contact">
<div><img src="images/icon-phone.svg" alt="phone"><p>+1-543-123-4567</p></div>
<div><img src="images/icon-email.svg" alt="email"><p>[email protected]</p></div>
</div>
<ul class="info">
<li>About Us</li>
<li>Contact Us</li>
<li>Jobs</li>
<li>Terms</li>
<li>Press</li>
<li>Privacy</li>
<li>Blog</li>
</ul>
<ul class="social">
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-twitter"></i></li>
<li><i class="fab fa-instagram"></i></li>
</ul>
</footer>
<div class="credits">
<p>Capstone Project By Group 79, SideHustle Internship 5.0</p>
</div>
</body>
</html>