-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 885 Bytes
/
index.html
File metadata and controls
22 lines (19 loc) · 885 Bytes
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" />
<link rel="icon" href="/favicon.ico" type="image/svg+xml">
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180">
<link as='font' rel='preload' href='/fonts/SourceSansPro-Regular.ttf' type='font/ttf' crossOrigin='anonymous' />
<link as='font' rel='preload' href='/fonts/SourceSansPro-SemiBold.ttf' type='font/ttf' crossOrigin='anonymous' />
<link as='font' rel='preload' href='/fonts/Caveat-Regular.ttf' type='font/ttf' crossOrigin='anonymous' />
<title>Drawboard</title>
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
<meta name="description" content="Drawboard application with lots of functions">
<meta name="theme-color" content="#ffffff">
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>