forked from ShaifArfan/one-page-website-html-css-project
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathchristmas.html
28 lines (24 loc) · 1009 Bytes
/
christmas.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Christmas Countdown</title>
<link rel="icon" type="image/x-icon" href="christmasicon.ico"/>
<link href="cstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<center> <a style="text-decoration:none" href='index.html' class='op'>Home</href> </a> </center>
<center><a style="text-decoration:none" href='SantaMinigames.html' class='op'>Festive Minigames</href> </a>
<center> <h1 id="title">Time Til Christmas</h1> </center>
<center> <p>Click for more time measurements !</p> </center>
<center> <span id="fullTime"></span>
<span id="days"></span>
<span id="hours"></span>
<span id="minutes"></span>
<span id="seconds"></span>
<span id="milliseconds"></span> </center>
<center> <p id="untilChristmas">Merry Christmas !</p> </center>
<script src="script.js"></script>
</body>
</html>