-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (61 loc) · 3.06 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-5SHRCRBKVN"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-5SHRCRBKVN');
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": ["VideoGame", "WebApplication"],
"name": "Tic Tac Toe",
"operatingSystem": "WEB",
"applicationCategory": "GameApplication"
}
</script>
<title>Tic Tac Toe</title>
<link rel="canonical" href="https://sahilsinghrana.github.io/tictactoevanilla/">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="title" content="Tic Tac Toe - Vanilla JS Implementation">
<meta name="description" content="Play Tic Tac Toe against a CPU opponent in this single page web application created by Sahil Singh Rana. Test your strategy and skills in this classic game!">
<meta name="keywords" content="tictactoe, tictactoe.js, Tic Tac Toe, game, CPU, single page web application, Sahil Singh Rana, Sahil Rana">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Sahil Singh Rana">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content="https://sahilsinghrana.github.io/tictactoevanilla/" />
<meta property="og:site_name" content="Tic Tac Toe">
<meta property="og:title" content="Tic Tac Toe - Vanilla JS implementation" />
<meta property="og:description" content="Play Tic Tac Toe against a CPU opponent in this single page web application created by Sahil Singh Rana. Test your strategy and skills in this classic game!">
<!-- Twitter -->
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://sahilsinghrana.github.io/tictactoevanilla/" />
<meta property="twitter:title" content="Tic Tac Toe - Vanilla JS implementation" />
<meta property="twitter:description"
content="Tic Tac Toe Vanilla js implementation using @sahilsinghrana/tictactoe.js package" />
<link defer rel="stylesheet" href="assets/styles.css" />
<link defer rel="stylesheet" href="assets/animations.css" />
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/github-fork-ribbon-css/0.2.3/gh-fork-ribbon.min.css" />
</head>
<body>
<main>
<a class="github-fork-ribbon" target="_blank" href="https://github.com/sahilsinghrana/tictactoevanilla"
data-ribbon="GitHub" title="GitHub">GitHub</a>
<h1>Tic Tac Toe</h1>
<div id="result"></div>
<div id="board" class="board init"></div>
</main>
<script async type="module" src="assets/script.js"></script>
<iframe style="position: fixed; bottom: 0; width: 100%; left: 0"
src="https://sahilsinghrana.github.io/madeByMeBanner/" frameborder="0"></iframe>
</body>
</html>