-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (62 loc) · 2.07 KB
/
index.html
File metadata and controls
77 lines (62 loc) · 2.07 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
<!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">
<title>Map Layout</title>
<!-- No Bootstrap -->
<!-- Fontawesome CSS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="navbar-minimalist">
<img src="images/logo.png">
</div>
<div class="row">
<div class="cards column">
<div class="card" style="background-image: url(images/Harrenhal.jpg)">
Harrenhal
</div>
<div class="card" style="background-image: url(images/Kingslanding.jpg)">
King's Landing
</div>
<div class="card" style="background-image: url(images/Oldtown.jpg)">
Oldtown
</div>
<div class="card" style="background-image: url(images/lannisport.jpg)">
Lannisport
</div>
<div class="card" style="background-image: url(images/Gulltown.jpg)">
Gulltown
</div>
<div class="card" style="background-image: url(images/Whiteharbour.jpg)">
White Harbour
</div>
<div class="card" style="background-image: url(images/Winterfell.png)">
Winterfell
</div>
<div class="card" style="background-image: url(images/Eyrie.jpg)">
Eryie
</div>
<div class="card" style="background-image: url(images/Casterlyrock.jpg)">
Casterly Rock
</div>
<div class="card" style="background-image: url(images/Sunspear.jpg)">
Sun Spear
</div>
<div class="card" style="background-image: url(images/Stormsend.jpg)">
Storm's End
</div>
<div class="card" style="background-image: url(images/Dragonsstone.jpg)">
Dragonstone
</div>
</div>
<div class="column">
<img id="map" src="images/map.jpg">
</div>
</div>
<!-- Change the token below (https://www.mapbox.com/account/access-tokens/) -->
</body>
</html>