-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
161 lines (114 loc) · 4.65 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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<!DOCTYPE html>
<html lang="en">
<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">
<title>Flyo</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&family=Raleway:wght@700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Header starts -->
<header id="header">
<div class="logo-image"><img src="./images/logo.svg" alt="Flyo-logo"></div>
<nav class="nav-links">
<ul>
<li> <a href="#">Features</a> </li>
<li> <a href="#">Team</a> </li>
<li> <a href="#">Sign in</a> </li>
</ul>
</nav>
</header>
<!-- Header ends -->
<!-- Main start -->
<main>
<div id="first-main">
<div class="left">
<div class="text">
<h1>All your files in one secure location, accesible anywhere.</h1>
<p>Flyo 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>
<div class="bottom">
<input type="text" placeholder="Enter your email.." class="input">
<button class="btn">Get Started</button>
</div>
</div>
<div class="right"></div>
</div>
<div id="second-main">
<div class="leftt">
<div class="textt">
<h2>Stay productive, wherever you are</h2>
<p>
Never let location be an issue when accessing your files. Flyo has you covered for all of your file storage needs. <br><br> Securely share files and folders with friends, family and colleagues for live collaboration. No email attachement is required!
</p>
<div class="textt-link">
<a href="#">See how Flyo works</a>
<img src="./images/icon-arrow.svg" alt="arrow" class="arrow">
</div>
</div>
<div class="bottomm">
<p>
"Flyo 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="bot-flex">
<img src="./images/avatar-testimonial.jpg" alt="person">
<div class="bot">
<h5>Kyle Burton</h5>
<p>Founder & CEO, Huddle</p>
</div>
</div>
</div>
</div>
<div class="rightt"></div>
</div>
<div id="aside">
<div class="left-aside">
<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="right-aside">
<div class="bottom-aside">
<input type="text" placeholder="Enter your email.." class="input">
<button class="btn">Get Started For Free</button>
</div>
</div>
</div>
</main>
<!-- Main ends -->
<!-- Footer starts -->
<div id="footer">
<div class="one">
<img src="./images/logo2.png" alt="Logo">
<div class="now">
<img src="./images/icon-phone.svg" alt="Phone">
<p>Phone: +1-543-123-4567</p>
</div>
<div class="neww">
<img src="./images/icon-email.svg" alt="Phone">
<p>example@flyo.com</p>
</div>
</div>
<div class="two">
<p>About us</p>
<p>Jobs</p>
<p>Press</p>
<p>Blog</p>
</div>
<div class="three">
<p>Contact us</p>
<p>Terms</p>
<p>Privacy</p>
</div>
<div class="four">
<img src="./images/facebook.png" alt="">
<img src="./images/twitter.png" alt="">
<img src="./images/insta.png" alt="">
</div>
</div>
<!-- Footer ends -->
</body>
</html>