-
Notifications
You must be signed in to change notification settings - Fork 0
/
ordered.html
55 lines (51 loc) · 1.43 KB
/
ordered.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
<!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>your orders</title>
<link rel="stylesheet" href="/CSS/ordered.css">
</head>
<body>
<h1>Your orders</h1>
<p class="home">
<a href="/test.html" style="color:white">
home
</a>
</p>
<p>
the following items will be delivered to you.
</p>
<table>
<tr>
<th>item</th>
<th> </th>
<th>price</th>
<th>status</th>
</tr>
<tr>
<td>handbag</td>
<td><img src="https://cdn.shopify.com/s/files/1/2186/5207/products/KutchGamthiHandbag2_600x.jpg?v=1668094043" alt="image unavailable" width="300"></td>
<td>$34</td>
<td>dispached <br>
will be delivered by 13th March.
</td>
</tr>
</table><br><br>
<p class="last">
track you order <br>
<button>track order</button><br><br>
to cancel your order <br>
<button>cancel order</button><br><br>
to postpone the arrival of your order <br>
<button>
select date of arrival
<input type="date">
</button><br>
<a href="/test.html">
<button>submit</button>
</a>
</p>
</body>
</html>