-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (48 loc) · 1.03 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
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>D Challenge</title>
<script src='javascript.js'></script>
<style>
#carOne {
position: absolute;
left: 100px;
top: 120px;
}
#carTwo {
position: absolute;
left: 200px;
top: 60px;
}
#carThree {
position: absolute;
left: 300px;
top: 0px;
}
#lightDisplay {
position: absolute;
background-color: green;
top: 248px;
left: 10px;
}
#counterDisplay {
width: 150px;
}
hr {
border-width: 1px;
width: 100%;
position: absolute;
top: 260px;
}
</style>
</head>
<body>
<button onclick="advanceCounter()" id="counterDisplay">Click to advance counter</button>
<button id="lightDisplay"> Light </button>
<button id="carOne"> Car #1 </button>
<button id="carTwo"> Car #2 </button>
<button id="carThree"> Car #3 </button>
<hr>
</body>
</html>