Skip to content

Commit 09faaf2

Browse files
Merge pull request #14 from DragonUncaged/atari-game
Added Game HTML/CSS & JS
2 parents 337622e + a0d8841 commit 09faaf2

4 files changed

Lines changed: 564 additions & 0 deletions

File tree

17- Atari Game/asset/preview.jpg

78.9 KB
Loading

17- Atari Game/index.html

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
<!DOCTYPE html>
2+
<html lang="en" >
3+
<head>
4+
<meta charset="UTF-8">
5+
<title>DragonUncaged - Color Blast!</title>
6+
<meta name="viewport" content="width=device-width, initial-scale=1"><link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css">
7+
<link rel="stylesheet" href="./style.css">
8+
9+
</head>
10+
<body>
11+
<!-- partial:index.partial.html -->
12+
<div class="container">
13+
<div class="game-wrap">
14+
<canvas width="960px" height="540" id="game"></canvas>
15+
<article class="content">
16+
<h1 class="title"><span>A</span><span>t</span><span>a</span><span>r</span><span>i</span><span> </span><span>G</span><span>a</span><span>m</span><span>e</span><span>s</span></h1>
17+
18+
<p>Use the <code>Left</code> and <code>Right</code> Arrows or <code>A</code> and <code>D</code> keys to move, <code>Spacebar</code> to shoot.</p>
19+
20+
<p><a href="https://codepen.io/natewiley/full/EGyiF" target="_blank">Click here to play in full mode</a>, click the game to pause and take a break. <a href="https://github.com/DragonUncaged" target="_blank">Created By DragonUncaged</a></p>
21+
</article>
22+
</div>
23+
</div>
24+
<!-- partial -->
25+
<script src="./script.js"></script>
26+
27+
</body>
28+
</html>

0 commit comments

Comments
 (0)