-
Notifications
You must be signed in to change notification settings - Fork 944
/
main.html
31 lines (29 loc) · 890 Bytes
/
main.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title></title>
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/main.css">
<link href='http://fonts.googleapis.com/css?family=Arvo:400,700' rel='stylesheet' type='text/css'>
<script src="http://code.jquery.com/jquery.min.js"></script>
<script src="js/app.js"></script>
</head>
<body>
<div id="game">
<header><h1>Street Fighter</h1></header>
<div id="directions">
<p>Click on Ryu to make him throw a Hadouken.</p>
<p>Press and hold down the "x" key to make him strike his cool pose!</p>
</div>
<div class="ryu">
<div class="ryu-still"></div>
<div class='ryu-ready'></div>
<div class='ryu-throwing'></div>
<div class='ryu-cool'></div>
</div>
<div class="hadouken"></div>
</div>
<audio class="hadouken-sound" src="sound/hadouken.mp3"></audio>
</body>
</html>