-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (40 loc) · 1.49 KB
/
index.html
File metadata and controls
48 lines (40 loc) · 1.49 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
48
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Restaurant Application</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form id="orderForm">
<h1>Restaurant Order Form</h1>
<label for="price">Food Price:</label>
<input type="number" id="price" name="price" step="0.01" required><br>
<label for="dish">Choose a dish:</label>
<select id="dish" name="dish" required>
<option value="" disabled selected>Select a dish</option>
<option value="spaghetti">Spaghetti</option>
<option value="pizza">Pizza</option>
<option value="sushi">Sushi</option>
<option value="burger">Burger</option>
<option value="salad">Salad</option>
</select><br>
<label for="table">Choose a Table:</label>
<select id="table" name="table" required>
<option value="Table 1">Table 1</option>
<option value="Table 2">Table 2</option>
<option value="Table 3">Table 3</option>
</select><br>
<button class="btn" type="submit">Add Bill</button>
<br>
<br>
<div id="dataDisplay">
<ul id="dataList">
</ul>
</div>
</form>
<script src="script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/axios/1.6.0/axios.min.js"></script>
</body>
</html>