-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
29 lines (29 loc) · 843 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./styles.css" />
</head>
<body>
<div>
<h1>Test page</h1>
</div>
<div>
<canvas id="canvas"></canvas>
</div>
<div>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<use href="./icons.svg#drawingSettingAutosaveSaving" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<use href="./icons.svg#toolElliottWave" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<use href="./icons.svg#toolLine" />
</svg>
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24">
<use href="./icons.svg#drawingSettingPreserveDrawingsActive" />
</svg>
</div>
</body>
<script type="module" src="./app.js"></script>
</html>