-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstores.html
More file actions
34 lines (29 loc) · 861 Bytes
/
stores.html
File metadata and controls
34 lines (29 loc) · 861 Bytes
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>
<link rel="stylesheet" type="text/css" href="style.css" />
<meta name="viewport" content="width=device-width, user-scalable=no" />
<title> BLACK FRIDAY </title>
</head>
<body>
<div id="content">
<header>BLACK FRIDAY</header>
<h1> Stores </h1>
<button class="back" onclick="location.href='home.html';">Back</button>
<nav id="main_nav">
<ul>
<li><a href="stores.html"> Browse Stores </a></li>
<li><a href="products.html"> Browse Products </a></li>
<li><a href="list.html"> My List </a></li>
</ul>
</nav>
<nav id="s_nav">
<ul>
<li><a href="khols.html"> Khols </a></li>
<li><a href="target.html"> Target </a></li>
<li><a href="walmart.html"> Walmart </a></li>
</ul>
</nav>
</div>
</body>
</html>