-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (37 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Map and Data Stories</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="assets/favicon.ico">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-3">
<!-- Tab Navigation -->
<ul class="nav nav-tabs" id="mainTabs" role="tablist">
<li class="nav-item">
<button class="nav-link active" data-bs-toggle="tab" data-bs-target="#map-tab" type="button">Map</button>
</li>
<li class="nav-item">
<button class="nav-link" data-bs-toggle="tab" data-bs-target="#stories-tab" type="button">Data Stories</button>
</li>
</ul>
<!-- Tab Content -->
<div class="tab-content mt-3">
<!-- Include Map -->
<div class="tab-pane fade show active" id="map-tab">
<iframe src="map/map.html" style="width: 100%; height: 500px; border: none;"></iframe>
</div>
<!-- Include Stories -->
<div class="tab-pane fade" id="stories-tab">
<iframe src="stories/stories.html" style="width: 100%; height: 500px; border: none;"></iframe>
</div>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.2/js/bootstrap.bundle.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>