-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathinsert_cand_year.php
52 lines (47 loc) · 1.25 KB
/
insert_cand_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
<?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:80px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<a href="insert_Candidates.php"><button style="margin-top:80px;" class="btn-special-2">1<sup>st</sup> Year </button></a>
</div>
<div class="col-md-12">
<a href="insert_Candidate_2nd.php"><button style="margin-top:80px;" class="btn-special-2">2<sup>nd</sup> Year </button></a>
</div>
<div class="col-md-12">
<a href="insert_Candidate_3rd.php"><button style="margin-top:80px; " class="btn-special-2">3<sup>rd</sup> Year </button></a>
</div>
</div>
</div>
</body>
</html>
<?php
include("footer.html");
?>