-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (39 loc) · 2.24 KB
/
index.html
File metadata and controls
46 lines (39 loc) · 2.24 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Hoarder</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" media="screen" href="./app/stylesheets/canvas.css" />
<link rel="shortcut icon" href="./app/assets/favicon.ico" type="image/x-icon">
<script defer src="https://use.fontawesome.com/releases/v5.7.2/js/all.js" integrity="sha384-0pzryjIRos8mFBWMzSSZApWtPl/5++eIfzYmTgBBmXYdhvxPc+XcFEk+zJwDgWbP" crossorigin="anonymous"></script>
<script src="./app/assets/javascripts/bundle.js"></script>
</head>
<body>
</div>
<div id="root">
<canvas id = "myCanvas" width="700" height="700"></canvas>
<div id='summary'>
<h2>Description:</h2>
<p>Hoarded is based off a game that I used to play alot in my time at High school.
I was never able to find the game again, so I thought that I could use my coding skills
to recreate the game. The objective is to collect the <strong id="blue">blue dots</strong> and avoid the <strong id="green">green dots</strong>.
</p>
<h3>Good Luck!</h3>
<div className="links">
<ul class='link-list'>
<a href="https://github.com/ZackSyed" class="mylinks" ><i class="fab fa-github fa-3x"></i></a>
<a href="https://www.linkedin.com/in/zalkiflsyed/" class="mylinks"><i class="fab fa-linkedin fa-3x"></i></a>
<a href="https://zacksyed.github.io/Portfolio-Page/" class="mylinks" ><i class="fas fa-user-circle fa-3x"></i></a>
<a href="https://angel.co/zalkifl-syed" class="mylinks" ><i class="fab fa-angellist fa-3x"></i></i></a>
</ul>
</div>
</div>
<div id="controls">
<h2 id="control-tag">Use the arrow keys as your controls</h2>
<img id='control-img' src="./app/assets/keyboard.png" alt="controls">
</div>
</div>
</body>
</html>