-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (17 loc) · 777 Bytes
/
Copy pathindex.html
File metadata and controls
24 lines (17 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<title>Griffin code trials</title>
<script src="index.js"></script>
</head>
<body>
<input type="text" name="itemname" id="itemname" placeholder="Enter the item name"><br><br>
<input type="number" name="itemid" id="itemid" placeholder="enter item id"><br><br>
<input type="number" name="itemprice" id="itemprice" placeholder="Enter price"><br><br>
<input type="text" name="itemprice" id="customername" placeholder="Enter customer name"><br><br>
<input type="number" name="salesnumber" id="salesnumber" placeholder="Enter sales number"><br><br>
<input type="number" name="itemprice" id="discountamount" placeholder="Enter discount amount"><br><br>
<button onclick="detailsdisplay()">submit</button>
<p id="div"></p>
</body>
</html>