Advertisement
sourav8256

Untitled

Jul 30th, 2023
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Order Confirmation</title>
  5. <!-- Add the Bootstrap CSS link -->
  6. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
  7. </head>
  8. <body>
  9. <div class="container mt-5">
  10. <div class="row justify-content-center">
  11. <div class="col-md-6">
  12. <div class="card">
  13. <div class="card-header">
  14. <h3 class="text-center">Order Confirmation</h3>
  15. </div>
  16. <div class="card-body">
  17. <h4 class="text-center">Thank you for your order!</h4>
  18. <p class="text-center">Your order has been confirmed. Below are the order details:</p>
  19.  
  20. <div class="row mt-4">
  21. <div class="col-sm-6">
  22. <p><strong>Order ID:</strong> #123456</p>
  23. <p><strong>Date:</strong> July 31, 2023</p>
  24. </div>
  25. <div class="col-sm-6">
  26. <p><strong>Payment Method:</strong> Credit Card</p>
  27. <p><strong>Total Amount:</strong> $150</p>
  28. </div>
  29. </div>
  30.  
  31. <h5 class="mt-4">Shipping Address:</h5>
  32. <p>John Doe</p>
  33. <p>123 Main St</p>
  34. <p>City, State, Zip</p>
  35. <p>Country</p>
  36.  
  37. <h5 class="mt-4">Order Items:</h5>
  38. <ul>
  39. <li>Product 1 - $100</li>
  40. <li>Product 2 - $50</li>
  41. </ul>
  42.  
  43. <div class="text-center mt-4">
  44. <a href="#" class="btn btn-primary">Back to Home</a>
  45. </div>
  46. </div>
  47. </div>
  48. </div>
  49. </div>
  50. </div>
  51.  
  52. <!-- Add the Bootstrap JS and jQuery links -->
  53. <script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
  54. <script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.6.0/dist/umd/popper.min.js"></script>
  55. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
  56. </body>
  57. </html>
  58.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement