-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (54 loc) · 1.98 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Tip calculator app</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@400;700&family=Space+Mono:wght@700&display=swap"
rel="stylesheet">
<script src="main.js" defer></script>
</head>
<body>
<div class="logo"><img src="images/logo.svg" alt="Splitter Logo"></div>
<div class="content">
<div class="light-section">
<label for="bill">Bill</label>
<input type="number" placeholder="0" id="bill" style="background-image: url('images/icon-dollar.svg')" min="0">
<label>Select Tip %</label>
<div class="button-container">
<button>5%</button>
<button>10%</button>
<button>15%</button>
<button>25%</button>
<button>50%</button>
<input type="number" placeholder="Custom">
</div>
<label for="people">Number of People</label>
<input type="number" placeholder="0" id="people" style="background-image: url('images/icon-person.svg')" min="0">
</div>
<div class="dark-section">
<div class="total-category-container">
<div class="total-category">
<div class="total-category-text">
<h3>Tip Amount</h3>
<h4>/ person</h4>
</div>
<h2 id="tipAmountPerPerson">$0.00</h2>
</div>
<div class="total-category">
<div class="total-category-text">
<h3>Total</h3>
<h4>/ person</h4>
</div>
<h2 id="totalAmountPerPerson">$0.00</h2>
</div>
</div>
<button id="resetButton" emptyState>RESET</button>
</div>
</div>
</body>
</html>