forked from vaishnaviprakash12/Clock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (25 loc) · 1.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Clock</title>
<link rel="stylesheet" href="style.css" />
<title>clock</title>
</head>
<body>
<p class="title">Clock Project</p>
<div class="box1">
<p class="time">Current time Is: <span id="time"></span></p>
<p class="note">
This clock website is made by Vaishnavi Prakash.<br>The above time and date is based on Indian Time Zone.<br>Here you can see the timezone of different countries as per your choice.
</p>
<hr class="hr"/>
<p class="note">We are here to show you the time for different countries: <a target="_blank" href="clock.html">Browse Times</a></p>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.1.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ka7Sk0Gln4gmtz2MlQnikT1wXgYsOg+OMhuP+IlRH9sENBO0LRn5q+8nbTov4+1p"
crossorigin="anonymous"></script>
<script src="index.js"></script>
</body>
</html>