-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path1page.html
98 lines (91 loc) · 3.98 KB
/
1page.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
<!DOCTYPE html>
<html>
<head>
<title>BHARAT ONLINE VOTING</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<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|Pacifico" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Black+Han+Sans|Lobster" rel="stylesheet">
<script >
var app = angular.module("header" ,["ngRoute"]);
app.controller("head",function($scope)
{
$scope.head = "BHARAT LOK SABHA ELECTION 2018";
$scope.image1 = "1.jpg"
});
app.config(function($routeProvider) {
$routeProvider
.when("/", {
templateUrl : "home.html"
})
.when("/cand", {
templateUrl : "cand.html"
})
.when("/vote", {
templateUrl : "vote.html"
})
.when("/curr", {
templateUrl : "curr.php"
});
});
</script>
</head>
<script type></script>
<body ng-app = "header" ng-controller = "head" class="container-fluid">
<div class="container-fluid" style="background-image: url(2.jpg);padding-top: 0.5vw;padding-bottom: 0.5vw;">
<div class="row">
<div class="col-sm-2">
<img ng-src="{{image1}}" class="img-responsive">
</div>
<div class="col-sm-8">
<h1 class="text-center" style="font-family: Abril Fatface;"> {{head}} </h1>
</div>
<div class="col-sm-2">
<h5 class="text-center"><b>HELPLINE NUMBER</b></h5>
<h5 class="text-center"><b>+132454323</b></h5>
<h5 class="text-center"><b>+234562345</b></h5>
</div>
</div>
</div>
<div class="container-fluid" style="margin-top: 0.5vw;">
<nav class="navbar navbar-inverse">
<div class="container">
<ul class="nav navbar-nav" style=" width: 100%;
text-align: center;" >
<li class="active" style="float: none;
display: inline-block;"><a href="#!" style="font-family: 'Abril Fatface';"><h4>Home</h4></a></li>
<li style="float: none;
display: inline-block;"> <a href="#!cand" style="font-family: 'Abril Fatface';"><h4>Candidates</h4></a></li>
<li style="float: none;
display: inline-block;"><a href="#!vote" style="font-family: 'Abril Fatface';"><h4>Vote</h4> </a></li>
<li style="float: none;
display: inline-block;"><a href="#!curr" style="font-family: 'Abril Fatface';"><h4>Current Result</h4></a></li>
</ul>
</div>
</nav>
</div>
<ng-view></ng-view>
<div class="container-fluid" style="background-image: url(10.jpg);margin-top: 1vw;">
<h4 style="margin-top: 3vw;color: white;">This is the National Election Portal of India, developed with an objective to enable a single window Lok Sabha Election 2018 voting system online. This Portal is a Mission Mode Project under the National E-Governance Plan, designed and developed by Sahil Srivastava , Government of India.</h4>
<div class="row">
<div class="col-sm-3">
<img src="">
</div>
<div class="col-sm-3">
</div>
<div class="col-sm-1">
</div>
<div class="col-sm-5">
<h5 style="text-align: right;color: white;">ELECTION COMISSION OF INDIA</h5>
<h5 style="text-align: right;color: white;">2/211, nawabganj, Lodhi Road</h5>
<h5 style="text-align: right;color: white;">New Delhi - 110 003 India</h5>
<h5 style="text-align: right;color: white;">Email: [email protected]</h5>
</div>
</div>
</div>
</body>
</html>