-
Notifications
You must be signed in to change notification settings - Fork 0
/
crash.html
34 lines (27 loc) · 1.08 KB
/
crash.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CALCULATE THE CRASH POINT</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1 class="h1">PLEASE FIRSTLY SELECT THE SPEEDS !!!</h1>
<nav class="tunnel" id="container">
<div class="road" id="road">
<div id="car1" class="car1">C1</div>
<div id="car2" class="car2">C2</div>
</div>
</nav>
<div class="buttons">
<label class="label2" for="car2speed">SPEED2 ==></label>
<input id="input2" class="speed2" type="number" min="1" max="50" width="5" value="" placeholder="0000" required>
<button id="launcher ">LAUNCHER</button>
<input id="input1" class="speed1" type="number" min="1" max="50" width="5" value="" placeholder="0000" required>
<label class="label1" for="car1speed"> <==SPEED1</label>
</div>
<script src="script.js"></script>
</body>
</html>