-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWhyChooseUs.php
82 lines (77 loc) · 2.61 KB
/
WhyChooseUs.php
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
<?php include('sessionhandler.php');?>
<!DOCTYPE html>
<html lang="en">
<head>
<title>e-ELECTION</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<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.2.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.glyphicon-ok{
color:red;
}
</style>
</head>
<body>
<?php include('Header.html');?>
<div class="container">
<div class="row">
<div class="col-sm-12">
<center><h2 style="color:red;">Why Choose Us?</h2></center><br>
<div class="container">
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Fast and easy to create — have your election up and running in 10 minutes.<br><br>
</div>
</div>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Improve turnout — reach more voters by email and resend ballots when voters don’t respond.<br><br>
</div>
</div>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Less work — votes are automatically counted and tabulated.<br><br>
</div>
</div><div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Voting is easy and convenient — it’s one click to vote; voters can choose when they want to vote<br><br>
</div>
</div>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Works the way voters do — email notifications, printed ballots, and walk-in on site voting.<br><br>
</div>
</div>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Voting is completely anonymous — ballots cannot be tied to voters.<br><br>
</div>
</div>
<div class="row">
<div class="col-sm-3">
</div>
<div class="col-sm-6">
<span class="glyphicon glyphicon-ok"></span> Speedy results — share full colour graphs with your organization online.<br><br>
</div>
</div>
</div>
<footer class="footer navbar-fixed-bottom">
<?php include('Footer.html');?>
</footer>
</body>
</html>