-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" href="./assets/images/dollar-sign.png" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/queries.css" />
<title>Calculate Monthly Bills</title>
</head>
<body>
<main class="bills-container">
<div class="bills-interface">
<img
class="bills-calendar"
src="./assets/images/calendar.png"
alt="Calendar"
/>
<h1 class="bills-title">Monthly <span>Bills</span></h1>
<div class="bills-data-box">
<div>
<label>Bill name:</label>
<input
class="bills-name-input"
placeholder="Only letters"
type="text"
required
/>
</div>
<div>
<label>Bill value:</label>
<input
class="bills-value-input"
placeholder="Only numbers"
type="number"
min="0"
required
/>
</div>
</div>
<div class="bills-buttons-box">
<button class="btn register-bill-btn">Register bill</button>
<button class="btn start-over-btn">Start over</button>
</div>
</div>
<div class="bills-result-box">
<p class="bills-result"></p>
<p class="bills-result-2"></p>
</div>
</main>
<script src="./js/script.js"></script>
</body>
</html>