-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgenerate.html
More file actions
46 lines (40 loc) · 1.3 KB
/
generate.html
File metadata and controls
46 lines (40 loc) · 1.3 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Generate</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css">
<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=Merriweather+Sans&family=Montserrat:wght@200;300;700&family=Sacramento&family=Ubuntu:wght@700&display=swap"
rel="stylesheet">
</head>
<body>
<div class="r-log">
<img class="clogo" alt="clogo" src="Clogo.svg"> <i
class="fa-solid fa-bolt-lightning font1"></i>
</div>
<h1 class="head">
Electricity Bill Payment <i class="fa-solid fa-bolt-lightning "></i>
</h1>
<main>
<div class="gen-main">
<form action="calculate.html">
<label> <strong> Meter Id: </strong></label> <input class="field"
type="search" placeholder="Meter Id" name="meter-id"> <br>
<br>
<button class="calc c1" type="submit">
<i class="fa-solid fa-circle-check"></i>
</button>
<button class="calc c2" type="reset">
<i class="fa-solid fa-circle-xmark"></i>
</button>
</form>
</div>
</main>
</body>
</html>