-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout-elements.html
More file actions
118 lines (98 loc) · 3.53 KB
/
layout-elements.html
File metadata and controls
118 lines (98 loc) · 3.53 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
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
<!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">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/layout.css">
<link rel="stylesheet" href="css/layout-elements-lessons.css">
<title>Document</title>
</head>
<body>
<div class="page-wrapper">
<header class="container justify-center shrink">
<div class="row align-center">
<div class="column logo shrink"><img src="assets/img/example-logo.svg" alt="example logo"></div>
<div class="column">
<nav class="row justify-right">
<div class="column shrink text-center"><a href="#" title="placeholder">Home</a></div>
<div class="column shrink text-center"><a href="#" title="placeholder">Overview</a></div>
<div class="column shrink text-center"><a href="#" title="placeholder">Features</a></div>
</nav>
</div>
<div class="column shrink">
<button>Sign up</button>
</div>
</div>
</header>
<section class="container grow hero justify-center">
<div class="row hero-row">
<div class="column justify-center hero-text">
<p>An Exercise in Web Layouts</p>
<h1>We are all masters of the frontend.</h1>
<p>Home is behind, the world ahead and there are many paths to tread through shadows to the.</p>
</div>
<div class="column icon-column align-center justify-center">
<div class="icon"></div>
</div>
</div>
</section>
<section class="container grow features">
<div class="row features-text align-center justify-center">
<div class="column text-center">
<h2>Features</h2>
<p>Home is behind, the world is ahead and there are many paths to tread through shadows to the edge, world ahead and there are.</p>
</div>
</div>
<div class="row features-cards text-center">
<div class="column feature-card align-center justify-space-between">
<div>
<img src="assets/img/example-logo.svg" alt="">
</div>
<div>
<h3>Feature Title</h3>
</div>
<div>
<p>It's dangerous business, Frodo, going out your door. You step onto the road</p>
</div>
</div>
<div class="column feature-card align-center justify-space-between">
<div>
<img src="assets/img/example-logo.svg" alt="">
</div>
<div>
<h3>Feature Title</h3>
</div>
<div>
<p>Three Rings for the Elven-kings under the sky, Seven for the Dwarf-lords in halls of stone</p>
</div>
</div>
<div class="column feature-card align-center justify-space-between">
<div>
<img src="assets/img/example-logo.svg" alt="">
</div>
<div>
<h3>Feature Title</h3>
</div>
<div>
<p>Nine for Mortal Men, doomed to die, One for the Dark Lord on his dark throne in the Land of Mordor</p>
</div>
</div>
<div class="column feature-card align-center">
<div>
<img src="assets/img/example-logo.svg" alt="">
</div>
<div>
<h3>Feature Title</h3>
</div>
<div>
<p>Where the Shadows lie. One Ring to rule them all, One Ring to find them, One Ring to bring them all</p></div>
</div>
</div>
</section>
</div>
<!-- SCRIPTS -->
<script src="js/utils.js"></script>
</body>
</html>