-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 794 Bytes
/
index.html
File metadata and controls
30 lines (24 loc) · 794 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Digital Clock Project</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<div class="info">
<h1>Digital Clock Project</h1>
<p><strong>Instructor:</strong> Amit Hagidak</p>
<p><strong>Team Leader:</strong> Rihanul Islam (789144)</p>
<p><strong>Team Members:</strong>Joynal abedin Hamim, Raihanul Alom, Shudip Barua</p>
</div>
<div class="led-clock">
<div id="time">00:00:00</div>
<div id="date">DD/MM/YYYY</div>
</div>
</div>
<script src="main.js"></script>
</body>
</html>