-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (31 loc) · 1.28 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<!-- Well, here are the icons, I guess -->
<link rel="apple-touch-icon" sizes="180x180" href="./icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="./icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="./icons/favicon-16x16.png">
<link rel="manifest" href="./icons/site.webmanifest">
<link rel="mask-icon" href="./icons/safari-pinned-tab.svg" color="#282c34">
<link rel="shortcut icon" href="./icons/favicon.ico">
<meta name="msapplication-TileColor" content="#603cba">
<meta name="msapplication-config" content="./icons/browserconfig.xml">
<meta name="theme-color" content="#282c34">
<!-- Huh, that actually wasn't as bad as I expected -->
<meta name="viewport" content="
width=device-width,
user-scalable=no,
initial-scale=1,
minimum-scale=1,
maximum-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<title>Lights Out</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Handlee">
<link rel="stylesheet" href="./dist/bundle.css">
</head>
<body>
<script src="./dist/bundle.js"></script>
</body>
</html>