-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
54 lines (51 loc) · 1.71 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vertex</title>
<meta name="author" content="helloworld-1839">
</head>
<body>
<div id="app">
<canvas id="fill"></canvas>
<canvas id="stroke"></canvas>
<canvas id="cursor"></canvas>
<canvas id="points"></canvas>
<canvas id="uicanvas"></canvas>
<div class="info">
<span id="constructor"></span>
<span id="theme"></span>
<span id="date"></span>
</div>
<button type="button" id="undo">Undo</button>
<div id="zoom">
<button type="button">+</button>
<button type="button">-</button>
</div>
<div id="overlay">
<div class="container">
<span>Vertex Archive</span>
<select name="puzzle" id="select">
<option value="">Choose a puzzle</option>
<hr>
<optgroup label="2024"></optgroup>
<hr>
<optgroup label="2023"></optgroup>
<hr>
<optgroup label="2022"></optgroup>
<hr>
<optgroup label="2021"></optgroup>
<hr>
<optgroup label="2020"></optgroup>
<hr>
<optgroup label="2019"></optgroup>
</select>
<button id="selectpuzzle">Select</button>
</div>
</div>
</div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>