-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 906 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Effective JavaScript: Frogger</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="control-btn">
<aside>
<div class="top" onclick="btop()"><i class="fa fa-arrow-up"></i></div>
<div class="left" onclick="bleft()"><i class="fa fa-arrow-left"></i></div>
<div class="right" onclick="bright()"><i class="fa fa-arrow-right"></i></div>
<div class="bottom" onclick="bbottom()"><i class="fa fa-arrow-down"></i></div>
<aside>
</div>
<script src="js/resources.js"></script>
<script src="js/app.js"></script>
<script src="js/engine.js"></script>
</body>
</html>