-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (30 loc) · 1.17 KB
/
index.html
File metadata and controls
33 lines (30 loc) · 1.17 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="./style.css">
<link href="https://fonts.googleapis.com/css?family=Press+Start+2P" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ"
crossorigin="anonymous">
<link rel="shortcut icon" href="./images/beer.png" , type="image/x-icon">
<title>Beer-Man</title>
</head>
<body>
<div class="game-container">
<div class="text-container">
<div class="links">
<a href="https://github.com/schen13/Beer-Man">
<i class="fab fa-github"></i>
</a>
<a href="https://www.linkedin.com/in/schen313/">
<i class="fab fa-linkedin"></i>
</a>
</div>
<h1>Welcome to Beer-Man!</h1>
<p>Use WASD or arrow keys to move. Select a direction beforehand and Beer-Man will turn at the next
intersection. </p>
<p>Beer will slow you down, but coffee will speed you back up. Use them wisely!</p>
</div>
<canvas></canvas>
</div>
<script type="application/javascript" src="lib/bundle.js"></script>
</body>
</html>