-
Notifications
You must be signed in to change notification settings - Fork 14
/
year.php
57 lines (52 loc) · 1.32 KB
/
year.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
<?php
include("header.html");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.btn-special-2 {
padding: 12px 24px;
background-color: white;
color: hsl(243, 80%, 62%);
border-radius: 6px;
border: 2px hsl(243, 80%, 62%) solid;
transition: transform 250ms ease-in-out;
}
.btn-special-2:hover {
transform: scale(1.10);
}
.btn-special-2:active {
transform: scale(.9);
}
#footersection{
margin-top:70px;
}
.h2_1{
text-align:center;
margin-top:30px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="h2_1">Select Voting Year</h2>
<a href="candidate.php"><button style="margin-top:50px;" class="btn-special-2">1<sup>st</sup> Year </button></a>
</div>
<div class="col-md-12">
<a href="2nd_cand.php"><button style="margin-top:60px;" class="btn-special-2">2<sup>nd</sup> Year </button></a>
</div>
<div class="col-md-12">
<a href="3rd_cand.php"><button style="margin-top:60px; " class="btn-special-2">3<sup>rd</sup> Year </button></a>
</div>
</div>
</div>
</body>
</html>
<?php
include("footer.html");
?>