-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (87 loc) · 4.34 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<link rel="stylesheet" href="css/style.css">
<title>Login Fylo</title>
</head>
<body>
<header>
<img src="images/logo.svg" alt="logo-fylo">
<nav>
<a href="">Features</a>
<a href="">Team</a>
<a href="">Sign in</a>
</nav>
</header>
<section class="presentation">
<div>
<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 tou need, share and collaborate with friens, family, and co-workers.</p>
<div>
<input type="email" placeholder="Enter your email" required>
<button>Get Started</button>
</div>
</div>
<img src="images/illustration-1.svg" alt="illustration-1">
</section>
<section class="information">
<div class="info-productive">
<h2>Stay productive, where you are</h2>
<p>Never let location be an issure when accesing your files. Fylo has you covered for all of your file storage needs.</p>
<p>Securely shre 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="icon"></a>
<div class="testimony">
<img src="images/icon-quotes.svg" alt="icon-quotes">
<p>Fylo has improved our team productivyti by an order of magnitude. Since making the switch our team has become a well-oiled collaboration machine.</p>
<div class="info-coment-person">
<img src="images/avatar-testimonial.jpg" alt="Image-person-Kyle">
<div>
<h2>Kyle Burton</h2>
<p><small>Founder & CEO, Huddle</small></p>
</div>
</div>
</div>
</div>
<img src="images/illustration-2.svg" alt="illustration-2">
</section>
<section class="acces">
<div class="acces-info">
<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 hae any questions, our support team would be happy to help you.</p>
</div>
<div class="acces-inputs">
<input type="email" placeholder="email@example.com"> <br>
<button>Get Started For Free</button>
</div>
</section>
<footer>
<img src="images/logo.svg" alt="logo-fylo">
<div class="info-footer">
<div class="contact">
<p><img src="images/icon-phone.svg" alt="icon-phone"> Phone: <a href=""> +1-543-123-4567</a></p>
<p><a href=""><img src="images/icon-email.svg" alt="icon-email"> example@fylo.com </a></p>
</div>
<div class="buttons-info">
<a href="">About Us</a> <br><br>
<a href="">Jobs</a><br><br>
<a href="">Press</a><br><br>
<a href="">Blog</a><br><br>
</div>
<div class="buttons-info">
<a href="">Contact Us</a><br><br>
<a href="">Terms</a><br><br>
<a href="">Privacy</a><br><br>
</div>
<div class="socials">
<a href=""><img src="images/pngwing.com.png" alt=""></a>
<a href=""><img src="images/twitter.png" alt=""></a>
<a href=""><img src="images/instagram.png" alt=""></a>
</div>
</div>
</footer>
</body>
</html>