-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshop.html
46 lines (41 loc) · 1.5 KB
/
shop.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
<!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>Shop</title>
<!-- Link the style.css here.-->
<link rel="stylesheet" href="style/style.css" />
</head>
<body>
<nav class="mainNav">
<!-- Upate the href so that each link is working and navigates to the corresponding page. -->
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="shop.html">Shopping</a></li>
</ul>
</nav>
<header class="jumbotron">
<div class="jumboText">
<h1>Welcome to our Store</h1>
<h2>Let's go Shopping!</h2>
</div>
</header>
<div class="mainBody">
<div id="my-store-12002118"></div>
<div>
<script data-cfasync="false" type="text/javascript"
src="https://app.ecwid.com/script.js?12002118&data_platform=code&data_date=2021-10-11"
charset="utf-8"></script>
<script
type="text/javascript"> xProductBrowser("categoriesPerRow=3", "views=grid(20,3) list(60) table(60)", "categoryView=grid", "searchView=list", "id=my-store-12002118");</script>
</div>
</div>
<footer class="mainFooter">
<p>Created by: Antonio Cotto</p>
<a href="mailto:cotto_antonio@student.mahoningctc.com">Email Me</a>
</footer>
</body>
</html>