-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tip Calculator</title>
<link rel="stylesheet" href="style.css">
<script src="main.js" defer></script>
</head>
<body>
<div class="calculator">
<div class="heading">Tip Calculator</div>
<form>
How much was your bill?
<br>
$<input type="text" placeholder="Bill amount" Bill-Amount>
<br>
How was your service?
<br>
<select service>
<option disabled selected>--Choose an Option--</option>
<option value="0">0%-Terrible</option>
<option value="0.05">5%-Bad</option>
<option value="0.15">15%-OK</option>
<option value="0.25">25%-Amazing</option>
</select>
<br>
<button type='button' Calculator>Calculate</button>
</form>
<div id="total">
Total
<br>
$<span Total-Tip></span>
</div>
</div>
</body>
</html>