-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (22 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="robots" content="noindex, nofollow" />
<meta name="AdsBot-Google" content="noindex, nofollow" />
<title>Trivia App</title>
<meta name="title" content="Trivia App" />
<meta name="description" content="Test your general knowledge. Answer multiple-choice trivia and see how well you rank against your friends." />
<meta property="og:type" content="website" />
<meta property="og:title" content="Trivia App" />
<meta property="og:description" content="Test your general knowledge. Answer multiple-choice trivia and see how well you rank against your friends." />
<meta property="twitter:title" content="Trivia App" />
<meta property="twitter:description" content="Test your general knowledge. Answer multiple-choice trivia and see how well you rank against your friends." />
<link rel="icon" href="/quiz.png" type="image/x-icon"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>