-
-
Notifications
You must be signed in to change notification settings - Fork 227
/
index.html
43 lines (41 loc) · 1.46 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
<!DOCTYPE html>
<html lang="en-ca">
<head>
<meta charset="utf-8">
<title>Background images</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="css/modules.css" rel="stylesheet">
<link href="css/grid.css" rel="stylesheet">
<link href="css/type.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Arvo:400,400i,700" rel="stylesheet">
</head>
<body>
<footer class="footer grid grid-middle pad-t pad-b">
<div class="unit xs-1 s-1 m-1-2 milli gutter-1-2 pad-t pad-b">
<nav>
<ul class="list-group-inline push-0">
<li><a href="#">Home</a></li>
<li><a href="#">Art</a></li>
<li><a href="#">Architecture</a></li>
<li><a href="#">Empire</a></li>
</ul>
</nav>
<p class="push-0">© 1427 Aztec Empire</p>
</div>
<form class="unit xs-1 s-1 m-1-2 push-0 pad-t-1-2 pad-b-1-2">
<div class="grid grid-middle">
<div class="search-label unit xs-1 s-1 m-1 l-1-4 gutter-1-2">
<label for="search">Search</label>
</div>
<div class="unit xs-1 s-1 m-1 l-1-2 gutter-1-2">
<input class="search-input" type="search" id="search">
</div>
<div class="unit xs-1 s-1 m-1 l-1-4 gutter-1-2 pad-t-1-2 pad-b-1-2">
<button class="search-btn btn w-1" type="submit">Find</button>
</div>
</div>
</form>
</footer>
</body>
</html>