-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (64 loc) · 2.96 KB
/
index.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>VOTE FOR MAYOR</title>
<link rel="icon" type="image/x-icon" href="./img/bat.ico">
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="banner">
<h1 class="banner-text">VOTE FOR GOTHAM'S NEXT MAYOR</h1>
<button id="topreg" class="top-reg" type="submit"><a href="#registration">Register to Vote</a></button>
</header>
<main>
<section id="registration" class="registration"></section>
<h2 id="candidates-brand">Candidates Portal</h2>
<section id="candidates" class="candidates"></section>
</main>
<footer id="main-footer">
<div class="container">
<div class="footer-right">
<nav class="footer-nav">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About Us</a></li>
<li><a href="#">Contact Us</a></li>
<li><a href="#">Resourses</a></li>
<li><a href="#">Terms of Use</a></li>
<li><a href="#">Privacy Policy</a></li>
</ul>
</nav>
<nav class="footer-nav">
<h4>Important Links</h4>
<ul>
<li><a href="#" >Search</a></li>
<li><a href="#">News & Announcements</a></li>
<li><a href="#">Photo Galary</a></li>
<li><a href="#">Right To Information Act</a></li>
<li><a href="#">Citizen Charter</a></li>
<li><a href="#">Important Telephone Numbers</a></li>
<li><a href="#">Site Map</a></li>
<li><a href="#">On-going Projects</a></li>
</ul>
</nav>
<nav class="footer-nav">
<ul>
<li><a href="#">City Development Plan</a></li>
<li><a href="#">Disaster Management</a></li>
<li><a href="#">Health, Hospitality & Allied Services</a></li>
<li><a href="#">Downloads</a></li>
<li><a href="#">Online Services</a></li>
<li><a href="#">GCPD</a></li>
</ul>
</nav>
</div>
<div class="footer-left">
<p class="copy">Copyright © 2023, Gotham Municipal Corporation</p>
</div>
</div>
</footer>
<script type="module" src="index.js"></script>
</body>
</html>