-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
executable file
·29 lines (29 loc) · 1.14 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="thumbnail" content="rattaban_huakuy.jpg" />
<meta property="og:image" content="rattaban_huakuy.jpg" />
<meta
property="og:title"
content="covidth - เว็บข้อมูลโควิดแบบกูทำเองก็ได้"
/>
<meta
name="description"
content="เราจะมี ศบค. ไว้ทำไมถ้ากูต้องหาข้อมูลเอง?"
/>
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script>
const faviconElement = document.querySelector("[rel=icon]");
const faviconList = ["favicon.ico", "favicon1.ico", "favicon2.ico"]
const favicon = faviconList[Math.floor(Math.random() * faviconList.length)];
faviconElement.href = `/${favicon}`;
</script>
<title>covidth - ข้อมูลโควิดแบบกูทำเองก็ได้</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>