-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (25 loc) · 966 Bytes
/
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
<!-- Row Counter HTML Code -->
<html lang="en">
<!-- Link to the CSS file for styling -->
<head>
<link rel="stylesheet" href="index.css">
</head>
<!-- Body of the HTML document -->
<body>
<!-- Container div to hold all the elements -->
<div class="container">
<!-- Heading for the Row Counter -->
<h1>Row Counter</h1>
<!-- Element to display the current row count -->
<h2 id="count-el" antiquewhite;>0</h2>
<!-- Button to increment the row count -->
<button type="button" id="increment-btn" onclick="increment()">INCREMENT</button>
<!-- Button to save the current row count -->
<button type="button" id="save-btn" onclick="save()">SAVE</button>
<!-- Paragraph element to display previous entries -->
<p id="save-el">Previous entries: </p>
<!-- Script tag to include the JavaScript file -->
<script src="index.js"></script>
</div>
</body>
</html>