-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcustomerQueue_txt.html
More file actions
47 lines (38 loc) · 1.13 KB
/
customerQueue_txt.html
File metadata and controls
47 lines (38 loc) · 1.13 KB
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
47
<!DOCTYPE html>
<html>
<head>
<!--
Author: Kylie Drawdy
Date: 10/7/2024
-->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Hands-on Project 7-4</title>
<link rel="stylesheet" href="styles/styles.css" />
<script src="js/customerQueue_txt.js" defer></script>
</head>
<body>
<header>
<h1>
Customer Queue
</h1>
</header>
<article>
<section>
<div id="customerInput">
<label for="customerName">Customer</label>
<input type="text" id="customerName" name="customerName" /> <br />
<input type="button" id="addButton" value="add" />
<input type="button" id="searchButton" value="search" />
<input type="button" id="removeButton" value="remove" />
<p id="status"></p>
</div>
<div id="customerBox">
<h1>Customer List <input id="topButton" value="Remove Top Customer" type="button" /></h1>
<ol id="customerList">
</ol>
</div>
</section>
</article>
</body>
</html>