-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (58 loc) · 1.39 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Routify</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: white;
padding: 15px;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
padding: 10px;
}
nav a {
color: white;
text-decoration: none;
padding: 10px 20px;
margin: 0 10px;
}
nav a:hover {
background-color: #555;
}
section {
padding: 20px;
}
iframe {
width: 100%;
height: 100vh; /* 100% of the viewport height */
border: none; /* Remove default border */
}
</style>
</head>
<body>
<header>
<h1>Routify</h1>
</header>
<nav>
<a href="index.html">Dashboard</a>
<a href="map.html">Map</a>
<a href="about.html">About</a>
</nav>
<section>
<!-- <h2>Welcome to the Dashboard</h2>-->
<iframe src="https://www.arcgis.com/apps/dashboards/0a4a7a37c5554a839f24b162990e51d7" title="Dashboard"></iframe>
</section>
</body>
</html>