-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 871 Bytes
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>E-commerce Store</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="shop.html">Shop</a></li>
<li><a href="aboutus.html">About Us</a></li>
<li><a href="contactus.html">Contact Us</a></li>
<li><a href="home.html">Login</a></li>
<li><a href="feedback.html" >Feedback</a></li>
<li><a href="order.html">Order</a></li>
<li><a href="survey.html">survey</a></li>
</ul>
</nav>
<h1>Welcome to our E-commerce Store</h1>
<form>
<input type="text" placeholder="Search">
<button class="search" type="submit">Search</button>
</form>
<img src="ecommerce-websites.jpg" alt="Meghabirth">
</header>
<footer>
<p>© 2023 E-commerce Store. All rights reserved.</p>
</footer>
</body>
</html>