-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (39 loc) · 1.11 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
32
33
34
35
36
37
38
39
40
41
42
43
44
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Memory Game</title>
<link href="https://fonts.googleapis.com/css?family=Coming+Soon" rel="stylesheet">
<link rel="icon" type="image/png" sizes="16x16" href="static/icon16.png">
<link rel="manifest" href="static/manifest.json">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Memory Game">
<link rel="apple-touch-icon" href="static/icon128.png">
<style>
:root {
--white: #ECEFF1;
--black: #263238;
--blue: #375e97;
--red: #bf0000;
--yellow: #FFBB00;
--green: #3F681C;
}
html, body {
margin: 0;
padding: 0;
color: var(--white);
font-size: 14px;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
</style>
</head>
<body>
<div id="app"></div>
</body>
</html>