-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (33 loc) · 1.55 KB
/
index.html
File metadata and controls
37 lines (33 loc) · 1.55 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>CAT PFE RT</title>
<link href="style.css" rel="stylesheet">
</head>
<body>
<h1>CAT PFE RT</h1>
<h3>The next move is <span>…</span></h3>
<nav>
<a class="road Intersection" data-road="Intersection" href="#">Intersection</a>
<a class="road YIntersection" data-road="YIntersection" href="#">YIntersection</a>
<a class="road TurnLeft" data-road="TurnLeft" href="#">TurnLeft</a>
<a class="road TurnRight" data-road="TurnRight" href="#">TurnRight</a>
<a class="road Roundabout" data-road="Roundabout" href="#">Roundabout</a>
<a class="road Anfart" data-road="Anfart" href="#">Anfart</a>
<a class="road Ausfart" data-road="Ausfart" href="#">Ausfart</a>
<a class="road PlayPause" data-road="PlayPause" href="#">PlayPause</a>
</nav>
<script src="js/lib/jquery-2.2.0.min.js"></script>
<script src="js/RoadAbstract.js"></script>
<script src="js/Road/Anfart.js"></script>
<script src="js/Road/Ausfart.js"></script>
<script src="js/Road/Intersection.js"></script>
<script src="js/Road/Roundabout.js"></script>
<script src="js/Road/TurnLeft.js"></script>
<script src="js/Road/TurnRight.js"></script>
<script src="js/Road/YIntersection.js"></script>
<script src="js/Road/PlayPause.js"></script>
<script src="js/main.js"></script>
</body>
<!-- (c) Blote Paling Producties -->
</html>