-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorder.html
69 lines (59 loc) · 1.25 KB
/
order.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 name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
.bill-container {
max-width: 600px;
margin: auto;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
padding: 20px;
}
.header {
text-align: center;
font-size: 24px;
margin-bottom: 20px;
}
.item {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.item span {
flex: 1;
}
.total {
margin-top: 20px;
font-weight: bold;
font-size: 18px;
}
</style>
<title>Your Bill</title>
</head>
<body>
<div class="bill-container">
<div class="header">
<h1>Your Company Name</h1>
<p>123 Main Street, Cityville, Country</p>
</div>
<div class="item">
<span>Item 1</span>
<span>$10.00</span>
</div>
<div class="item">
<span>Item 2</span>
<span>$15.00</span>
</div>
<div class="total">
<p>Total: $25.00</p>
</div>
</div>
</body>
</html>