-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtime-clicked.html
31 lines (27 loc) · 1.14 KB
/
time-clicked.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
<!DOCTYPE html>
<html>
<head>
<title>TIME CLICKED</title>
<link rel="stylesheet" type="text/css" href="time-clicked-style.css">
</head>
<body>
<div class="container">
<h1>WELCOME</h1>
<div class="input-container">
<input class="name-box" id="fname" type="text" name="fullName" placeholder="Enter Name"><br>
</div>
<div class="buttons-container">
<button class="submit-btn" onclick="storeName()">Submit</button>
<button class="hide-btn" onclick="hideTable()">Hide Data</button>
</div>
<!--Display is set to none here so that the style for this div doesn't show up before any action-->
<div id = "enteredItems" class="table-container" style="display: none">
<table id="tbl" border="1" class="table">
<caption id="caption"></caption>
</table>
<p id="message"></p>
</div>
<script src="time-clicked-js.js"></script>
</div>
</body>
</html>