-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhrep.html
47 lines (45 loc) · 1.53 KB
/
hrep.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/main.css">
<title>Home | eVote</title>
</head>
<body>
<header>
<div id="top_bar">
<div id="logo"><a href="index.html"><img src="images/evote.png" alt="eVote logo"></a></div>
<nav>
<ul>
<li><a href="index.html">Presidential</a></li>
<li><a href="senator.html">Senatorial</a></li>
<li><a href="hrep.html" class="active">House of Rep</a></li>
</ul>
</nav>
<div class="time"></div>
</div>
<h2 id="headng">House of Representative Election</h2>
</header>
<main>
<div id="main_screen">
<div id="mained_screen"></div>
<p id="totalV"></p>
</div>
<div id="v_scroll_screen">
<h3>Select a LGA</h3>
<input list="lgas" id="input_lgas" name="lga" placeholder="Start typing..."><button id="search_btn">GO</button>
<datalist name="lgas" id="lgas">
</datalist>
</div>
</main>
<footer>
<p>©2019 Electronic and Computer Engineering Graduates of Nnamdi Azikiwe University Awka, supervised by Engr. Dr. Ezeagwu and Engr. Dr. Akpado</p>
</footer>
<!-- <script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script> -->
<script src="scripts/loader.js"></script>
<script src="scripts/main.js"></script>
<script src="scripts/hrep.js"></script>
</body>
</html>