-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
52 lines (49 loc) · 1.61 KB
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<title>Electricity Billing System</title>
<link rel="stylesheet" type="text/css" href="style/style.css" />
</head>
<body background="style/css/img1.jpg">
<div id="main">
<div id="header">
<div id="logo">
<div id="logo_text">
<!-- class="logo_colour", allows you to change the colour of the text -->
<h1><a href="index.php">Electricity Billing System</a></h1>
</div>
</div>
<div id="menubar">
<ul id="menu">
<!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
<li><a href="login.php">Log In</a></li>
<li class="selected"><a href="index.php">Home</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="contact.php">Contact Us</a></li>
</ul>
</div>
</div>
<div id="site_content">
<div class="sidebar">
<h1>Latest News</h1>
<h4>New Website Launched</h4>
<br>
<h1>Search</h1>
<form method="post" action="#" id="search_form">
<p>
<input class="search" type="text" name="search_field" value="Enter keywords....." />
<input name="search" type="image" style="border: 0; margin: 0 0 -9px 5px;" src="style/search.png" alt="Search" title="Search" />
</p>
</form>
</div>
<div id="content">
<br><br>
<center><h1>Welcome to the Electricity Billing Portal</h1> </center>
</div>
</div>
<div id="footer">
<p>Copyright © EBMS</p>
</div>
</div>
</body>
</html>