forked from sahilhbti/online-voting-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcand.html
65 lines (62 loc) · 2.18 KB
/
cand.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>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular-route.js"></script>
<link href="https://fonts.googleapis.com/css?family=Black+Han+Sans|Lobster" rel="stylesheet">
<title></title>
</head>
<style>
.card {
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
width: 100%;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.container {
padding: 2px 16px;
}
</style>
<body>
<div class="container-fluid">
<h1 class="text-center" style="font-family: 'Black Han Sans';"> Parties in Election</h1>
<hr>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<div class="card">
<img src="3.jpg" alt="Avatar" class="img-responsive" >
<div class="container">
<h4><b> Bharatiya Janata Party(BJP)</b></h4>
<button type="button" class="btn btn-danger btn-lg" onclick="window.open('https://en.wikipedia.org/wiki/Bharatiya_Janata_Party')">View Detail</button>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<img src="4.jpg" alt="Avatar" class="img-responsive" >
<div class="container">
<h4><b>Indian National Congress(INC)</b></h4>
<button type="button" class="btn btn-danger btn-lg " onclick="window.open('https://en.wikipedia.org/wiki/Indian_National_Congress')">View Detail</button>
</div>
</div>
</div>
<div class="col-sm-4">
<div class="card">
<img src="5.jpg" alt="Avatar" class="img-responsive center-block">
<div class="container">
<h4><b>Aam Aadmi Party(AAP)</b></h4>
<button type="button" class="btn btn-danger btn-lg" onclick="window.open('https://en.wikipedia.org/wiki/Aam_Aadmi_Party')">View Detail</button>
</div>
</div>
</div>
</div>
</div>
</body>
</html>