-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.html
24 lines (24 loc) · 955 Bytes
/
popup.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>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<h1 class="text-center mt-5" style="color: #ff1d58;">UAE 5% Tax Calculator</h1>
<div class="form-group mt-4">
<label for="amount">Amount (AED):</label>
<input type="number" class="form-control" id="amount" placeholder="Enter amount">
</div>
<button class="btn btn-primary mt-2" id="calculate">
<i class="fas fa-calculator"></i> Calculate
</button>
<div class="mt-3" id="result" style="color: #212529;font-size: 20px;
margin-bottom: 20px;">
<i class="fas fa-money-bill-wave"></i> Tax: <span id="taxAmount" style="color: #0049B7;">0</span> AED
</div>
</div>
<script src="popup.js"></script>
</body>
</html>