-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlab7.php
36 lines (34 loc) · 791 Bytes
/
lab7.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
<!doctype html>
<html>
<head>
<meta http-equiv="refresh" content="1" />
<style>
p {
color: white;
font-size: 90px;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
body {
background-color: black;
}
span{
color: white;
font-size: 20px;
position: absolute;
top: 65%;
left: 50%;
transform: translate(-50%, -50%);
}
</style>
<p>
<?php
date_default_timezone_set('Asia/Kolkata');
echo date(" h: i : s A");
?>
</p>
<span>made with <b style="color:red;">♥</b> by Sujith D</span>
</head>
</html>