-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 1.09 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
40
41
42
<!doctype html>
<html>
<head>
<title>JavaScript</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/jquery-1.8.0.min.js"><\/script>')</script>
<script src="js/main.js"></script>
</head>
<body>
<a href="#" id="button">Start Race!</a>
<a href="#" id="reset">Start Over</a>
<br>
<img src="images/car1.jpg" id="car1">
<p id="p1">Toyota Prius, 150 horsepower, 30mpg, Max Speed: 140 mph.</p>
<br>
<img src="images/car2.jpg" id="car2">
<p id="lambo">Lamborghini, 400 horsepower, 20mpg, Max Speed: 250 mph.</p>
<br>
<img src="images/car3.jpg" id="car3">
<p id="police">Cop Car, 150 horsepower, 40mpg, Max Speed: 120 mph.</p>
<br>
<img src="images/car4.jpg" id="car4">
<p id="audi">Audi, 300 horsepower, 30mpg, Max Speed: 200 mph.</p>
<br>
<img src="images/car5.jpg" id="car5">
<p id="rolls">Rolls Royce, 100 horsepower, 10mpg, Max Speed: 30 mph.</p>
<br>
<div id="ready">Ready?</div>
<div id="go">Go!</div>
</body>
</html>