-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathindex.html
24 lines (24 loc) · 932 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>CSS/HTML Workshop with govirtuo.com</title>
</head>
<body>
<div id="car">
<input class="js-name" type="text" placeholder="Car name"/>
<input class="js-price-by-day" type="number" placeholder="Price by day"/>
<input class="js-price-by-km" type="number" placeholder="Price by km"/>
</div>
<div id="rental">
<input class="js-name" type="text" placeholder="Driver name"/>
<input class="js-begin" type="date" placeholder="Rental begin date"/>
<input class="js-end" type="date" placeholder="Rental end date"/>
<input class="js-distance" type="number" placeholder="Distance in km"/>
<input class="js-option" type="checkbox" placeholder="Deductible option"/>
</div>
<button id="compute">Compute</button>
<div id="actors"></div>
<script src="virtuo.js"></script>
<script src="index.js"></script>
</body>
</html>