diff options
Diffstat (limited to 'frontend/main.html')
-rw-r--r-- | frontend/main.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/frontend/main.html b/frontend/main.html new file mode 100644 index 0000000..887c60a --- /dev/null +++ b/frontend/main.html | |||
@@ -0,0 +1,21 @@ | |||
1 | <!DOCTYPE html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <meta charset="utf-8"> | ||
5 | <title>hello-world</title> | ||
6 | <script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script> | ||
7 | <script src="main.js"></script> | ||
8 | <link rel="preconnect" href="https://fonts.gstatic.com"> | ||
9 | <link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;600&display=swap" rel="stylesheet"> | ||
10 | <style> | ||
11 | * { | ||
12 | font-family: 'Rubik', sans-serif; | ||
13 | } | ||
14 | </style> | ||
15 | </head> | ||
16 | <body> | ||
17 | <script>var app = Elm.Main.init();</script> | ||
18 | </body> | ||
19 | </html> | ||
20 | |||
21 | |||