-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart Page.html
32 lines (32 loc) · 909 Bytes
/
Cart Page.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Products Page</title>
<link rel="stylesheet" type="text/css" href="Cart Page.css">
</head>
<body>
<!---Navigation bar--->
<div class="navBar">
<div class="wrapper">
<div class="search_box">
<input type="text" placeholder="search">
<button type="submit"><img src="Images\search_icon.png" height="15"/>
</button>
</div>
</div>
<div class="logo">
<a href="index.html">LIFELINE'S Fashion and Sports Outlet</a>
</div>
<li><a href="index.html">Home</a></li>
<li><a href="Products Page.html">Products</a></li>
<li><a class="current"href="Cart Page.html">Cart</a></li>
</div>
<!---/Navigation bar--->
<div class="cart">
<h1> Cart</h1>
<p>Your Cart is Empty!</p>
</div>
</body>
</html>