-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (35 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title>Tip Calculator</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<script src="wc-tip-calculator.js"></script>
<script type="module" src="lit-input-tip-calculator.js"></script>
</head>
<body>
<lit-input-tip-calculator></lit-input-tip-calculator>
<tip-calculator></tip-calculator>
<div class="calculator">
<h2>Tip Calculator</h2>
<h3>Vanilla JavaScript</h3>
<label for="billAmount">Bill Amount:</label>
<input
onchange="calculateTip()"
type="number"
id="billAmount"
placeholder="Enter Bill Amount"
/>
<label for="tipPercentage">Tip Percentage:</label>
<input
onchange="calculateTip()"
type="number"
id="tipPercentage"
placeholder="Enter Tip Percentage"
/>
<button onclick="calculateTip()">Calculate Tip</button>
<p id="totalTip">Total Tip: $0.00</p>
<p id="totalBill">Total Bill: $0.00</p>
</div>
<script src="vanilla.js"></script>
</body>
</html>