-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (52 loc) · 2.21 KB
/
index.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
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
62
63
64
65
66
67
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<!--for SEO-->
<meta name="description" content="date and time website" />
<meta name="keywords" content=" javascript built date time website" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- tailwind style linkage -->
<link href="/dist/main.css" rel="stylesheet">
<!-- Latest font awesome (6.4.0) -->
<script src="https://kit.fontawesome.com/434622864a.js" crossorigin="anonymous"></script>
<title>Date-Time</title>
</head>
<body class="text-center text-white font-bold bg-no-repeat bg-cover ">
<header class="flex flex-row justify-between text-xs my-4 p-2 shadow-md shadow-black">
<p class="font-Clocker">JO</p>
<h1 class="text-xs">Date-Time</h1>
<div class="flex flex-row gap-x-3 text-white font-bold">
<p class=""><a href="https://www.linkedin.com/in/funmilola-b-b4044b13b"><i class="fa-brands fa-linkedin "></a></i></p>
<p><a href=" https://www.twitter.com/lajoc__"> <i class="fa-brands fa-x-twitter"></i> </a></p>
<p><a href="https://www.instagram.com/lajoc_devs"> <i class="fa fa-instagram"></i> </a> </p>
</div>
</header>
<div class="w-screen h-[80vh] flex flex-col justify-center items-center shadow-black shadow-xl">
<!-- main time -->
<h1 id="currentTime" class="text-3xl font-bold mb-3">Time</h1>
<!-- container -->
<div class="my-6 py-2 w-2/4 shadow-indigo-950 shadow-lg">
<!-- breakdown of the date div -->
<div class="flex flex-wrap sm:flex-nowrap p-3 justify-around items-end text-left">
<div> <!-- date -->
<p id="currentWeekDay" class="my-4 text-green-400 uppercase">Week-Day: </p>
<p id="currentDay" class="my-4">DAY: </p>
<p id="currentMonth" class="my-4 uppercase">MONTH: </p>
<p id="currentYear" class="mt-4">YEAR: </p>
</div>
<div> <!-- time -->
<p id="hours" class="my-4">HOUR(s): </p>
<p id="minutes" class="my-4">MINUTE(s): </p>
<p id="seconds" class="mt-4">SECOND(s): </p>
</div>
</div>
</div>
</div>
<footer>
<p class=" text-base mt-5 mb-2 animate-pulse">Made by <a href="https://github.com/f-lajoc" class="text-color1">Lajoc_devs</a></p>
</footer>
<script src="js/script.js"></script>
</body>
</html>