-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorders.html
91 lines (64 loc) · 2.17 KB
/
orders.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<html>
<head>
<title>
Your Orders
</title>
<style>
body{
background-image: url(ordersbg.jpg);
background-position: center;
background-size: contain;
}
#main {
font-size: 30px;
color: goldenrod;
}
.main1 {
font-size: 40px;
}
</style>
</head>
<body>
<h1 id="main">Here you will find your orders</h1>
<div class="main1">
<table border = "1" width = "100%" height = "20%">
<tr>
<td>
<table border="1" width = "100%" height="50%">
<tr>
<th style = "font-size: 25px">Customer Name</th>
<th style = "font-size: 25px">Item Name</th>
<th style = "font-size: 25px"> Date Of Order</th>
<th style = "font-size: 25px">Date Of Delivery</th>
</tr>
<tr>
<td style = "font-size: 25px"> 1. </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td style = "font-size: 25px">1. </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td style = "font-size: 25px">1. </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td style = "font-size: 25px">1. </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
</table>
</td>
</tr>
</table>
</div>
</body>
</html>