-
Notifications
You must be signed in to change notification settings - Fork 14
/
result_year.php
61 lines (56 loc) · 1.37 KB
/
result_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
58
59
60
61
<?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>
*{
margin:0;
padding:0;
box-sizing:border-box;
}
.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;
}
.h2_3{
margin-top:30px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-md-12">
<h2 class="h2_3"> Select Result Year</h2>
<a href="validation.php"><button style="margin-top:40px;" class="btn-special-2">1<sup>st</sup> Year </button></a>
</div>
<div class="col-md-12">
<a href="validation_2.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="validation_3.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");
?>