-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha1.html
More file actions
60 lines (59 loc) · 1.36 KB
/
a1.html
File metadata and controls
60 lines (59 loc) · 1.36 KB
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
<!--assignment1 DISPLAYING CURRENT DAY AND CURRENT TIME -->
<html>
<head>
<font color="magenta">
<font size="10">
<center> CURRENT DAY AND CURRENT TIME</center>
</font>
</font>
</head>
<title>Assignment1</title>
<body bgcolor="yellow">
<center>
<p>
<font color="green">
<font size="5">
<script>
var today = new Date();
var day = today.getDay();
var daylist = ["Sunday","Monday","Tuesday","Wednesday ","Thursday","Friday","Saturday"];
document.write("Today is : " + daylist[day] + ".");
var hour = today.getHours();
var minute = today.getMinutes();
var second = today.getSeconds();
var prepand = (hour >= 12)? " PM ":" AM ";
hour = (hour >= 12)? hour - 12: hour;
if (hour===0 && prepand===' PM ')
{
if (minute===0 && second===0)
{
hour=12;
prepand=' Noon';
}
else
{
hour=12;
prepand=' PM';
}
}
if (hour===0 && prepand===' AM ')
{
if (minute===0 && second===0)
{
hour=12;
prepand=' Midnight';
}
else
{
hour=12;
prepand=' AM';
}
}
document.write("<p>Current time is : "+hour + prepand + " : " + minute + " : " + second);
</script>
</font>
</font>
</p>
</center>
</body>
</html>