-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (34 loc) · 1.04 KB
/
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css">
<script src="./p5.min.js"></script>
<script src="./dat.gui.min.js"></script>
<script src="./classes/Car.js"></script>
<script src="./classes/Wheel.js"></script>
<script src="./classes/Motor.js"></script>
<script src="./classes/ParkingLot.js"></script>
<script src="./classes/ParkingAssistant.js"></script>
<script src="./app.js"></script>
</head>
<body>
<div class="container">
<div class="item-a">
<h1>Parallel parking assistance</h1>
</div>
<div class="item-b" id="p5sketch"></div>
<div class="item-d" id="gui-container"></div>
<div class="item-c">
<div>
<h2>CONTROLS</h2>
<p>Press W to go forward, S to go backwards</p>
<p>Steer with A/D</p>
<p>Use Spacebar to stop immediately</p>
</div>
<div>
<p id="author-info">Made by Andrzej Wódkiewicz (<a href="http://github.com/akwodkiewicz">akwodkiewicz</a>)</p>
</div>
</div>
</div>
</body>
</html>