-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathitems.html
97 lines (88 loc) · 4.63 KB
/
items.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Our Local Shop/items</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-+0n0xVW2eSR5OomGNYDnhzAbDsOXxcvSN1TPprVMTNDbiYZCxYbOOl7+AMvyTG2x"
crossorigin="anonymous">
<link rel="stylesheet" href="./index.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="jumbotron jumbotron-fluid mb-0" id="jtron">
<div class="container-fluid" id="jtr" style="height:10em;">
<h1>Welcome to our Local Shop</h1>
<h3>(search variety,shop variety)</h3>
</div>
</div>
<nav class="navbar navbar-expand-md navbar-dark sticky-top navcolor">
<a class="navbar-brand" href="/index.html">Local Shop</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#collapsibleNavbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="collapsibleNavbar">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link" href="/index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/items.html">Items</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/offers.html">Offers</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/index.html#contact">Contact Us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/about.html">About Us</a>
</li>
</ul>
</div>
</nav>
<div class="container box">
<h1 class="title">Categories :</h1>
<ul class="list-group flex">
<li class="custom" aria-current="true">
<a class="food" href="./food.html">
<h1>Food</h1>
</a>
</li>
<li class=" custom" aria-current="true">
<a class="groceries" href="./groceries.html">
<h1>Groceries</h1>
</a>
</li>
<li class=" custom" aria-current="true">
<a class="dresses" href="./dresses.html">
<h1>Dresses</h1>
</a>
</li>
<li class=" custom" aria-current="true">
<a class="electronics" href="./electronics.html">
<h1>Electronics</h1>
</a>
</li>
<li class="custom" aria-current="true">
<a class="medics" href="./medics.html">
<h1>Medics</h1>
</a>
</li>
</ul>
</div>
<footer class=" container-fluid footer bottomZero">
<div class="footer-copyright text-center py-3">© 2021 Copyright:
<a href="#"> Our Local Shop </a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"
integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"
integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT"
crossorigin="anonymous"></script>
</body>
</html>