-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (61 loc) · 2.01 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Orders</title>
<style>
/* table, th, td {
border:1px solid black;
}
th, td{
padding: .8%;
}
th{
font-size: 20px;
} */
#Table-1,#Table-2,#Table-3{
font:20px sans-serif ;
font-weight: 750;
}
li{
font:15px sans-serif ;
font-weight: 500;
}
</style>
</head>
<body>
<div class="from">
<form>
<label for="Price">Price:</label>
<input type="number" name="Price" id="Price" placeholder="Enter Price">
<label for="Item">Item Name:</label>
<input type="text" name="Item" id="Item" placeholder="Item Name">
<label for="Table">Table Number:</label>
<select name="Table" id="Table">
<option value="Select Table">Select Table</option>
<option value="Table-1">Table-1</option>
<option value="Table-2">Table-2</option>
<option value="Table-3">Table-3</option>
</select>
<input type="button" value="Submit" class="btn-Submit">
</form>
<!-- <table style="width:100%;border: 4px rgb(11, 7, 240) solid">
<tr>
<th>Tabble-1</th>
<th>Tabble-2</th>
<th>Tabble-3</th>
</tr>
</table> -->
<div class="orders">
<ul id="Table-1">Table-1</ul>
<ul id="Table-2">Table-2</ul>
<ul id="Table-3">Table-3</ul>
</div>
</div>
</body>
<script src="https://cdn.jsdelivr.net/npm/axios/dist/axios.min.js"></script>
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script src="script.js"></script>
</html>