-
Notifications
You must be signed in to change notification settings - Fork 0
/
map.html
38 lines (32 loc) · 1.43 KB
/
map.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Ring Map</title>
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<link href="assets/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
</head>
<body>
<header class="mb-auto">
<nav class="base-width nav nav-masthead nav-justified">
<a class="nav-link" href="home.html">Home</a>
<a class="nav-link active" aria-current="page" href="map.html">Map</a>
<a class="nav-link" href="timeline.html">Timeline</a>
<a class="nav-link" href="deities.html">Deities</a>
</nav>
</header>
<main class="h-100 w-100">
<div class="map">
<iframe class="iframe-map-style" sandbox="allow-scripts allow-forms allow-same-origin allow-downloads"
height="100%" width="100%" src="https://azgaar.github.io/Fantasy-Map-Generator/?maplink=https://dl.dropboxusercontent.com/s/5llv2ikjmfkr3ov/O%20Anel%202023-02-08-15-49.map?dl=0&width=1920&height=969&options=default">
</iframe>
</div>
</main>
<footer class="mt-auto">
<p>Made by <a href="#" class="text-link">mariochermes</a>, for <a href="https://courses.edx.org/dashboard"
class="text-link">CS50</a>.</p>
</footer>
</body>
</html>