Skip to content

Commit 1ac7be7

Browse files
committed
Add div and span tags
1 parent 80e6895 commit 1ac7be7

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

Source-Code/CountdownTimer/index.html

+21-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,27 @@
77
<link rel="stylesheet" href="style.css">
88
</head>
99
<body>
10-
10+
<h1>EID CELEBRATIONS</h1>
11+
12+
<div class="container">
13+
<div class="countdown days-c">
14+
<p class="big-text" id="days">0</p>
15+
<span>days</span>
16+
</div>
17+
<div class="countdown hours-c">
18+
<p class="big-text" id="hours">0</p>
19+
<span>hours</span>
20+
</div>
21+
<div class="countdown mins-c">
22+
<p class="big-text" id="mins">0</p>
23+
<span>mins</span>
24+
</div>
25+
<div class="countdown seconds-c">
26+
<p class="big-text" id="seconds">0</p>
27+
<span>seconds</span>
28+
</div>
29+
</div>
30+
1131
<script src="script.js"></script>
1232
</body>
1333
</html>

0 commit comments

Comments
 (0)