-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathsachincalc.html
More file actions
101 lines (101 loc) · 2.13 KB
/
sachincalc.html
File metadata and controls
101 lines (101 loc) · 2.13 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300&display=swap"
rel="stylesheet"
/>
<link
href="https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="sachinstyle.css"
/>
<script src="sachinscript.js"></script>
<title>Electricity Bill Calculator</title>
</head>
<body
style="
background-image: linear-gradient(to right, #306377 0%, #88314e 100%);
"
>
<div
class="card"
style="width: 18rem"
>
<img
src="image-removebg-preview (11).png"
class="logo"
width="80px"
height="80px"
alt="..."
/>
<div class="card-body">
<h5 class="card-title">Electricity Bill Calculator</h5>
<div class="container">
<form action="">
<p class="read">Your Name:</p>
<input
class="box"
type="text"
id="name"
/>
<p class="read">Previous Reading(in KWh):</p>
<input
class="box"
type="number"
id="unit"
name="units"
/><br />
<p class="read">New Reading(in KWh):</p>
<input
class="box"
type="number"
id="unit1"
name="units1"
/><br />
<p class="read">Select your type:</p>
<select
name="select"
id="select"
>
<option
id="household"
class="dropdown"
value="household"
>
Household
</option>
<option
id="business"
class="dropdown"
value="business"
>
Business
</option>
</select>
<button
onclick="myFunction()"
class="btn btn-primary"
>
Calculate
</button>
</form>
</div>
</div>
</div>
</body>
</html>