-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
34 lines (34 loc) · 1.52 KB
/
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
30
31
32
33
34
<!DOCTYPE html>
<html data-theme="light" lang="en">
<head>
<meta charset="UTF-8" />
<meta property=og:image itemprop=image content=/og-image.jpg>
<meta property=og:type content=website>
<meta property=og:site_name content="Vue3 roulette">
<meta property=og:title content="Vue3 Roulette">
<meta property=og:description content="A customizable and flexible fortune wheel made with vue3">
<meta property=og:updated_time content=3600000>
<meta name=description content="A customizable and flexible fortune wheel made with vue3">
<link rel="icon" href="/favicon.ico" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/daisyui@1.16.2/dist/full.css" rel="stylesheet" type="text/css" />
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@2.2/dist/tailwind.min.css" rel="stylesheet" type="text/css" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue3 Roulette</title>
<style>
html, body {
font-family: 'Ubuntu', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-align: center;
overflow-x: hidden;
}
</style>
</head>
<body>
<div id="app"></div>
<script type="module" src="/pages/main.js"></script>
</body>
</html>