-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout-elements-classes.html
More file actions
52 lines (52 loc) · 1.78 KB
/
layout-elements-classes.html
File metadata and controls
52 lines (52 loc) · 1.78 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Layout Elements and Classes</title>
<link rel="stylesheet" href="css/layout-element-classes-lecture.css">
</head>
<body>
<div class="page-wrapper">
<header class="container py-20 my-20">
<div class="row justify-content-between">
<a href="/" class="column flex-shrink logo-wrapper">
<img src="images/fylo-logo.svg" alt="Fylo Logo" class="logo d-flex">
</a>
<nav class="column flex-shrink justify-content-center">
<ul class="d-flex align-items-center justify-content-between gap-20">
<li>
<a href="#">Features</a>
</li>
<li>
<a href="#">Team</a>
</li>
<li>
<a href="#">Sign In</a>
</li>
</ul>
</nav>
</div>
</header>
<main class="container hero">
<div class="row">
<img src="images/illustration-1.svg" alt="Fylo picture" class="image1 column">
<section class="column justify-content-center align-items-start">
<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 class="d-flex justify-content-center align-items-center">
<form id="newsletter" class="newsletter d-flex">
<label>
<input type="email" placeholder="Enter your email..." id="email" name="email" required>
</label>
<button type="submit" class="single-submit">Get Started</button>
</form>
</div>
</section>
</div>
</main>
</div>
</body>
</html>