-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnomination.html
102 lines (87 loc) · 3.82 KB
/
nomination.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Candidates List</title>
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href='http://fonts.googleapis.com/css?family=Ubuntu' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed' rel='stylesheet' type='text/css'>
<style>
.headerFont{
font-family: 'Ubuntu', sans-serif;
font-size: 24px;
}
.subFont{
font-family: 'Raleway', sans-serif;
font-size: 14px;
}
.specialHead{
font-family: 'Oswald', sans-serif;
}
.normalFont{
font-family: 'Roboto Condensed', sans-serif;
}
cen {text-align: center;}
</style>
</head>
<body>
<div class="container">
<nav class="navbar navbar-default navbar-fixed-top navbar-inverse
" role="navigation">
<div class="container">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#example-nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<div class="navbar-header">
<a href="index.html" class="navbar-brand headerFont text-lg"><strong>Uttarakhand MATDAAN E-Voting 2022</strong></a>
</div>
<div class="collapse navbar-collapse" id="example-nav-collapse">
<ul class="nav navbar-nav">
</ul>
<span class="normalFont"><a href="admin.html" class="btn btn-success navbar-right navbar-btn"><strong>Admin Panel</strong></a></span>
</div>
</div> <!-- end of container -->
</nav>
<div class="container" style="padding:100px;">
<div class="row">
<div class="col-sm-3">
<img src="images/pushkar.jpg" class="img img-thumbnail" style="width:200px;height:200px;" alt="">
<h4 class="normalFont text-center">Pushkar Singh Dhami</h4>
<h5 class="normalFont text-center">Current Chief Minister of Uttarakhand from BJP</h5>
<hr>
</div>
<div class="col-sm-3">
<img src="images/hrawat.jpg" class="img img-thumbnail" style="width:200px;height:200px;" alt="">
<h4 class="normalFont text-center">Harish Rawat</h4>
<h5 class="normalFont text-center">Former Chief Minister of Uttarakhand from Congress.</h5>
<hr>
</h5>
</div>
<div class="col-sm-3">
<img src="images/kejriwal.jpg" class="img img-thumbnail" style="width:200px;height:200px;" alt="">
<h4 class="normalFont text-center">Arvind Kejriwal</h4>
<h5 class="text-center normalFont">Founder of Aam Admi Party and Current Chief Minister of New Delhi</h5>
<hr>
</div>
<div class="col-sm-3">
<img src="images/maywati.jpg" class="img img-thumbnail" style="width:200px;height:200px;" alt="">
<h4 class="normalFont text-center">Mayawati</h4>
<h5 class="normalFont text-center">From Bahujan Samaj Party.</h5>
<hr>
</div>
</div>
</div>
<cen><u><h1><a href="index.html">Back to Home</a></h1></u></cen>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
</body>
</html>