File size: 976 Bytes
9a0c1bc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Order Confirmation</title>
    <link href="style.css" rel="stylesheet">
</head>
<body class="bg-gray-100">
    <header class="bg-amazon-blue p-4 text-white">
        <div class="container mx-auto">
            <div class="flex justify-between items-center">
                <h1 class="text-2xl font-bold">Amazon Dummy</h1>
                <a href="cart.html" class="text-white">Cart</a>
            </div>
        </div>
    </header>

    <main class="container mx-auto mt-8">
        <h2 class="text-2xl font-semibold mb-4">Order Confirmation</h2>

        <p class="text-gray-700">Thank you for your order! Your order has been placed successfully.</p>
    </main>

    <footer class="bg-gray-200 p-4 mt-8 text-center">
        <p>&copy; 2024 Amazon Dummy</p>
    </footer>
</body>
</html>