-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>SAAT:Home</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body onload="initClock()">
<div class="topnav">
<a class="active" href="#home">Home</a>
<a href="quizzes.html">Subjects</a>
<a href="https://peerlist.io/subhranshu">About</a>
</div>
<center>
<p id="wel_text">
<b>🎯 MOCK TEST 🎯</b><br><br>
<b>Siksha 'O' Anusandhan Admission Test (SAAT)</b></p>
<!--digital clock start-->
<div class="datetime">
<div class="date">
<span id="dayname">Day</span>,
<span id="month">Month</span>
<span id="daynum">00</span>,
<span id="year">Year</span>
</div>
<div class="time">
<span id="hour">00</span>:
<span id="minutes">00</span>:
<span id="seconds">00</span>
<span id="period">AM</span>
</div>
</div>
<!--digital clock end-->
</p>
<a href="quizzes.html"><button>Available Test(s)</button></a>
<p id="footer-text"><b>This not the official site of SOA!<br><br>Made By Subhranshu</b></p>
</center>
<script src="clock.js"></script>
</body>
</html>