-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathfooter.jsp
43 lines (39 loc) · 1.24 KB
/
footer.jsp
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
<!-- Copyright (c) Nishit Tated. All Rights Reserved.
* Project name: Online Election Voting System
* This project is licensed under the MIT License, see LICENSE.
*/ -->
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
</head>
<body>
<!-- footer -->
<div class="footer">
<div class="container">
<h3>Election India</h3><br>
<div class="footer-grids">
<div class="col-md-3 footer-grid">
<p>Delhi,
India
<a href="http://localhost:8080/OnlineElectionVotingSystem">Election India</a>
<p>Phone : +91 9876543210</p>
</div>
<div class="col-md-2 footer-grid">
<ul>
<li><a href="contact.jsp">Contact</a></li>
<li><a href="about.jsp">About</a></li>
</ul>
</div>
<div class="clearfix"> </div>
</div>
<div class="footer-copy">
<p>© 2018-19 Election. All rights reserved | Design by Tithi,Nishit,Niyati,Nisarg,Shrushti,Karan</p>
</div>
</div>
</div>
<!-- //footer -->
</body>
</html>