If anyone want to genrate a tool that will check your electriity bill then he can do at gepco bill and if anyone want a high quilty quest post on crypto "write for us" then he can follow this link.
Here is the bill checking code for gepco.
<div>
<h1>GEPCO Bill Checking</h1>
<form id="bill-form">
<label for="consumer-no">Enter Your Consumer Number:</label>
<input type="text" id="consumer-no" name="consumer-no">
<button type="submit" id="submit-btn">Check Bill</button>
</form>
<div id="bill-details"></div>
</div>
h1 {
text-align: center;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
label {
margin-bottom: 10px;
}
input {
padding: 5px;
margin-bottom: 10px;
border-radius: 5px;
border: 1px solid gray;
}
button {
padding: 5px 10px;
border-radius: 5px;
border: none;
background-color: blue;
color: white;
cursor: pointer;
}
#bill-details {
margin-top: 20px;
text-align: center;
}
Top comments (0)