-
Notifications
You must be signed in to change notification settings - Fork 0
/
game.html
74 lines (64 loc) · 2.53 KB
/
game.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
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Santiago Gomez">
<title>Santiago Gomez Resume - Tic-Tac-Toe</title>
<meta name="description" content="Javascript project of a simple Tic-Tac-Toe game developed by Santiago Gomez.">
<meta name="keywords" content="javascript game, tic-tac-toe, gomezsantiago, santiago gomez projects">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<base href="https://sg.gomezsantiago.com/">
<link rel="icon" href="imgs/favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface" rel="stylesheet">
<link rel="stylesheet" href="/stylez.css">
</head>
<body>
<header>
<a href="index.html" id="logo" class="highlight">SG</a>
<nav>
<div id="menu-icon">
<div class="menu-iconElement"></div>
<div class="menu-iconElement"></div>
<div class="menu-iconElement"></div>
</div>
<ul id="Menu">
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html" class="current">Portfolio</a></li>
</ul>
</nav>
</header>
<!--End Header-->
<!--Game-->
<div class="container2" id="tictactoe">
<h2 class="title">Tic-Tac-<span class="highlight">Toe</span></h2>
<h3></h3>
<canvas></canvas>
</div>
<!--Game-->
<!--Footer-->
<footer class="container2">
<ul>
<h5>SITE MAP</h5>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="game.html">Tic-Tac-Toe</a></li>
</ul>
<ul>
<h5>MAIN SITE</h5>
<li><a href="https://www.gomezsantiago.com" target="_blank">GomezSantiago.com</a>
</li>
</ul>
<ul>
<h5>CONTACT</h5>
<li><a class="fa fa-linkedin-square" href="https://www.linkedin.com/in/santiago-gomez-13b4a9115/" target="_blank"></a>
</li>
<li><a class="fa fa-instagram" href="https://www.instagram.com/santiarrubla/" target="_blank"></a>
</li>
</ul>
</footer>
<!--End Footer-->
<script src="script.js"></script>
<script src="gamescript.js"></script>
</body>
</html>