-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (56 loc) · 2.86 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pew Pew Cubed</title>
<link rel="stylesheet" href="css/style.css">
<!-- SEO Meta Tags -->
<meta name="description" content="Pew Pew Cubed - Go pew pew with a cube to other cubes!">
<meta name="author" content="Travis Wade"> <!-- your name, or whatever -->
<link rel="canonical" href="https://pewpew.twade.io/"> <!-- Put your actual domain here you scrub -->
<!-- Open Graph Meta Tags for Social Sharing -->
<meta property="og:title" content="Pew Pew Cubed">
<meta property="og:description" content="Pew Pew Cubed - Go pew pew with a cube to other cubes!">
<meta property="og:image" content="https://pewpew.twade.io/images/bg.jpg">
<meta property="og:url" content="https://pewpew.twade.io/">
<meta property="og:type" content="website">
<!-- Twitter Card Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Pew Pew Cubed">
<meta name="twitter:description" content="Pew Pew Cubed - Go pew pew with a cube to other cubes!">
<meta name="twitter:image" content="https://pewpew.twade.io/images/bg.jpg">
<!-- Favicon -->
<link rel="apple-touch-icon" sizes="180x180" href="https://pewpew.twade.io/images/icons/apple-touch-icon.png">
<link rel="manifest" href="https://pewpew.twade.io/images/icons/site.webmanifest">
<link rel="mask-icon" href="https://pewpew.twade.io/images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="https://pewpew.twade.io/images/icons/favicon.ico">
<meta name="msapplication-TileColor" content="#000000">
<meta name="msapplication-config" content="https://pewpew.twade.io/images/icons/browserconfig.xml">
<meta name="theme-color" content="#000000">
</head>
<body>
<div id="game-container">
<div id="game-wrapper">
<div id="score">Score: 0</div>
<canvas id="gameCanvas"></canvas>
<div id="menu-overlay">
<button id="play-button">PLAY GAME</button>
<a href="https://github.com/travisnwade/Pew-Pew-Cubed" target="_blank" class="menu-link">GITHUB</a>
<a href="https://links.twade.io/" target="_blank" class="menu-link">MY LINKS</a>
</div>
</div>
</div>
<div id="footer">
<p>Keep bein' fantastic you beautiful creature.
© <span id="current-year"></span>
<a href="https://links.twade.io/" target="_blank">Travis Wade</a> | <a href="https://github.com/travisnwade/Pew-Pew-Cubed" target="_blank">Pew Pew Cubed</a>
</p>
</div>
<script>
// Set the current year in the footer
document.getElementById('current-year').textContent = new Date().getFullYear();
</script>
<script src="js/game.js"></script>
</body>
</html>