-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpage.html
30 lines (21 loc) · 867 Bytes
/
page.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
<!doctype html>
<!-- Or whatever language you use -->
<html lang="en-US">
<head>
<!-- You can delete theme-color and color-scheme if you want -->
<meta charset="UTF-8">
<meta name="theme-color" content="#fff">
<meta name="color-scheme" content="normal">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Change all of these. You can delete keywords if you want -->
<title>Bot rating system</title>
<meta name="description" content="A system to rate bots">
<meta name="keywords" content="rating system">
<meta name="author" content="icecream17 (github)"> <!-- If you're not me, you might want to change this -->
<script type="module" src="glicko2.js"></script>
<script type="module" src="index.js"></script>
<script type="module" src="page.js"></script>
</head>
<body>
</body>
</html>