-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex1.html
88 lines (78 loc) · 2.32 KB
/
index1.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Ben Wiz's travelmap.">
<link ref="canonical" href="https://benwiz.com/travelmap">
<title>Travelmap | Ben Wiz</title>
<link rel="shortcut icon" href="assets/hat.png" type="image/x-icon">
<style>
/* https://fonts.googleapis.com/css2?family=Dosis:wght@300&display=swap */
@font-face {
font-family: 'Dosis';
font-style: normal;
font-weight: 300;
font-display: swap;
src: url(https://fonts.gstatic.com/s/dosis/v18/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMl2xME.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
body {
font-family: 'Dosis', sans-serif;
text-align: center;
}
#container {
width: 345px;
margin: 0 auto;
}
p {
width: 100%;
margin-bottom: 20px;
}
button {
border: 2px solid dodgerblue;
border-radius: 4px;
color: dodgerblue;
background-color: transparent;
font-size: 15px;
width: 80%;
height: 36px;
margin: 8px;
line-height: 0; /* to vertical align text */
}
button:hover {
background-color: rgba(30, 144, 255, 0.1); /* dodgerblue */
}
button:active {
/* background-color: green; */
width: 79%;
/* height: 32px; */
}
#secondary-buttons {
margin-top: 33px;
margin-bottom: 4px;
}
.no-border {
border: none;
}
</style>
<script defer src="https://unpkg.com/@benwiz/boba.js@latest/dist/bundle.js"></script>
</head>
<body>
<div id="container">
<h1>Travel Map</h1>
<p></p> <!-- Tagline, empty for now -->
<a href="2d">
<button>
2D
</button>
</a>
<a href="3d">
<button>
3D
</button>
</a>
</div>
</body>
</html>