-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
29 lines (29 loc) · 1.03 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="viewport"
content="width=device-width,initial-scale=1.0,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no">
<link rel="icon" href="/favicon.png"/>
<link rel="stylesheet" href="/modern-normalize.css">
<meta name="description" content="Moordle | A Wordle clone">
<meta property="og:image"
content="https://avatars.githubusercontent.com/u/38754558?s=96&v=4"/>
<meta property="og:title" content="Moordle"/>
<meta property="og:description" content="Moordle | A Wordle clone"/>
<meta name="twitter:image"
content="https://avatars.githubusercontent.com/u/38754558?s=96&v=4"/>
<meta name="twitter:card" content="summary"/>
<meta name="twitter:creator" content="@Moozon_Wei"/>
<title>Moordle | A Wordle clone</title>
</head>
<body>
<script>
document.documentElement.addEventListener('click', e => {
e.preventDefault()
})
</script>
<div id="app"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>