-
Notifications
You must be signed in to change notification settings - Fork 0
/
salesDetails.html
52 lines (43 loc) · 953 Bytes
/
salesDetails.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
<!DOCTYPE>
<html>
<head>
<title> Batteries Sale </title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<style>
table {
border-collapse: collapse;
width: 100%;
}
th, td {
text-align: left;
padding: 8px;
}
tr:nth-child(even){background-color: #f2f2f2}
th {
background-color: #b56969;
color: white;
}
#retriveEntireDetailsButton {
margin-top : 30px;
margin-bottom : 30px;
background-color: white;
color: black;
border: 2px solid #555555;
width : 80px;
height : 40px;
}
#retriveEntireDetailsButton:hover {
background-color: #555555;
color: white;
}
</style>
</head>
<body>
<button onclick ="retriveEntireDetails()" id = "retriveEntireDetailsButton"> Data </button>
<div>
<table id = "SalesDetailsTable">
</table>
</div>
<script src ="script.js"></script>
</body>
</html>