-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (54 loc) · 2.33 KB
/
index.html
File metadata and controls
77 lines (54 loc) · 2.33 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<!DOCTYPE html>
<html>
<head>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="referrer" content="always">
<title id="title">Tictacoe | React+Redux tictactoe game</title>
<meta id="og-title" property="og:title" content="Tictacoe | React+Redux tictactoe game "/>
<meta id="twitter-title" name="twitter:title" content="Tictacoe | React+Redux tictactoe game "/>
<meta id="description" name='description' content='Classic Tictactoe game built using react and redux'/>
<meta id="og-description" property="og:description" content="Classic Tictactoe game built using react and redux"/>
<meta id="twitter-description" name="twitter:description" content="Classic Tictactoe game built using react and redux"/>
<meta name="twitter:card" content="summary" />
<meta name="keywords" content="react redux, react games, tictactoe react, react redux games">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta id="og-type" property="og:type" content="website" />
<meta name="copyright" content="Atisa">
<meta property="og:locale" content="en_GB" />
<link href="https://fonts.googleapis.com/css?family=Poppins:400,700" rel="stylesheet">
<link rel="shortcut icon" href="static/img/favicon.ico?v=3" >
<script type="text/javascript">
(function(l) {
if (l.search) {
var q = {};
l.search.slice(1).split('&').forEach(function(v) {
var a = v.split('=');
q[a[0]] = a.slice(1).join('=').replace(/~and~/g, '&');
});
if (q.p !== undefined) {
window.history.replaceState(null, null,
l.pathname.slice(0, -1) + (q.p || '') +
(q.q ? ('?' + q.q) : '') +
l.hash
);
}
}
}(window.location))
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-120904854-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-120904854-2');
</script>
</head>
<body>
<div id="app"></div>
<script src="static/dist/bundle.js?v=7"></script>
</body>
</html>