-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 1.11 KB
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Planet Viewer</title>
<link rel="stylesheet" href="/src/style.css" />
</head>
<body>
<canvas id="scene"></canvas>
<header id="brand">
<button id="prev" class="navbtn" aria-label="previous planet"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="15 6 9 12 15 18"/></svg></button>
<div id="title"><h1>EARTH</h1></div>
<button id="next" class="navbtn" aria-label="next planet"><svg width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.4" stroke-linecap="round" stroke-linejoin="round" aria-hidden="true"><polyline points="9 6 15 12 9 18"/></svg></button>
</header>
<button id="back" hidden>‹ back</button>
<div id="minis"></div>
<div id="panel"></div>
<div id="stats"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>