blob: cec55c794fca2ac25abbb13b1581b4c7f013fe61 (
plain)
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
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>hello-world</title>
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
<script src="main.js"></script>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap" rel="stylesheet">
<style>
* {
font-family: 'Rubik', sans-serif;
}
html, body {
margin: 0px;
padding: 0px;
}
</style>
</head>
<body>
<script>var app = Elm.Main.init();</script>
</body>
</html>
|