20 lines
614 B
HTML
20 lines
614 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Draw with friends" />
|
|
<title>Doodly</title>
|
|
<link rel="icon" href="/favicon.png" />
|
|
<link
|
|
rel="apple-touch-icon"
|
|
href="/apple-touch-icon.png"
|
|
sizes="180x180"
|
|
/>
|
|
<meta name="theme-color" content="#ffffff" />
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|