-
Notifications
You must be signed in to change notification settings - Fork 0
/
stage1.php
61 lines (60 loc) · 1.05 KB
/
stage1.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
$time = date("H:i:sa");
$date = date("Y/m/d");
?>
<!DOCTYPE html>
<html>
<head>
<title>FOOTBALL KICK OFF</title>
<!--All my CSS styling were done here-->
<style>
body,html {
margin: 0px;
height: 100%;
}
.bg {
background-image: url(football_pitch.jpg);
height: 100%;
margin-top: 0;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
padding: 0px;
}
p{
color: #fff;
font-weight: bolder;
font-size: 200px;
padding: 0px;
}
.date {
position: absolute;
left: 695px;
top: 480px;
font-size: 70px;
color: #ff0000;
}
.time {
position: absolute;
left: 620px;
top: 360px;
font-size: 100px;
color: blue;
}
</style>
</head>
<!--This is where the Body Actually Starts-->
<body class="bg">
<p>KICK OFF TIME:</p>
<P class="date">
<?php
echo $date ."<br />";
?>
</P>
<p class="time">
<?php
echo $time ."<br />";
?>
</p>
</body>
</html>