-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathordered.html
More file actions
40 lines (38 loc) · 1.21 KB
/
ordered.html
File metadata and controls
40 lines (38 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VaseCom - Ordered</title>
<!-- Add your CSS link for styling here -->
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div>
<a href="home.html">
<img src="images/vasecom.jpg" alt="VaseCom Logo">
</a>
</div>
<nav>
<ul>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="products.html">Products</a></li>
<li><a href="signup.html">Sign Up</a></li>
<li><a href="login.html">Login</a></li>
<li><a href="cart.html">Cart</a></li>
</ul>
</nav>
</header>
<main>
<section id="order-confirmation">
<h2>Order Confirmed!</h2>
<p>Thank you for ordering from VaseCom. Your vases are on their way.</p>
</section>
</main>
<!-- Add your footer if needed -->
<footer>
<h4>© 2023 VaseCom. All rights reserved. | Designed by VaseCom Pvt. Ltd.</h4>
</footer>
</body>
</html>