-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html
58 lines (58 loc) · 2.35 KB
/
layout.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
<!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>Document</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=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="css/resets.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/layout-exercise.css">
</head>
<body>
<div class="page-wrapper">
<header class="container justify-center">
<div class="row justify-space-between">
<div class="column shrink">
<a href="/"><img src="img/example-logo.svg" alt="Company Logo"></a>
</div>
<nav class="column shrink">
<ul class="d-flex gap-5 align-center">
<li>
<a class="menu-item" href="/">Home</a>
</li>
<li>
<a class="menu-item" href="/overview">Overview</a>
</li>
<li>
<a class="menu-item" href="/features">Features</a>
</li>
<li>
<a href="/sign-up">
<button class="btn-primary">Sign Up</button>
</a>
</li>
</ul>
</nav>
</div>
</header>
<section class="container hero justify-center">
<div class="row gap-30">
<div class="column justify-center">
<p class="text-edit">An Exercise in Web Layouts</p>
<h1 class="text-adj">We are all masters of the frontend.</h1>
<p class="text-edit">Home is behind, the world ahead and there are many paths to tread through shadows to the.</p>
</div>
<div class="column">
<div class="box"></div>
</div>
</div>
</section>
</div>
</body>
</html>