-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcategory.html
More file actions
68 lines (59 loc) · 2.25 KB
/
category.html
File metadata and controls
68 lines (59 loc) · 2.25 KB
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
<!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>Sport Store-Catalog</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&family=Kanit:ital,wght@1,200&display=swap"
rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Anton&display=swap" rel="stylesheet">
<link rel="shortcut icon" href="images/sportItem logo.PNG" type="image/x-icon">
<link rel="stylesheet" href="font Awesome/all.min.css">
<!-- <link rel="stylesheet" href="./ccc/style.css"> -->
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/category.css">
</head>
<body>
<header>
<h1>The <em>Sport</em> Store</h1>
<img id="logo" src="images/sportItem logo.PNG" alt="logo">
<nav>
<ul>
<li><a href="aboutUs.html">About us</a></li>
<li><a href="cart.html">Cart</a><span id="count"></span></li>
<li><a href="category.html">Shop</a></li>
<li><a href="index.html">Home</a></li>
</ul>
</nav>
</header>
<main>
<section id='clothesSection'>
<h2><em>Clothes</em> Category</h2>
</section>
<section id='machinesection'>
<h2><em>Machine</em> Category</h2>
</section>
<section id='shoseSection'>
<h2><em>Shoes</em> Catrgory</h2>
</section>
<section id='toolsSection'>
<h2><em>Tools</em> Catergory</h2>
</section>
</main>
<footer id="footer">
<img src="images/footer logo.PNG" alt="">
<span>Copyright © 2021 The Sport Store - All Rights Reserved</span>
<ul>
<li><i class="fab fa-facebook-f"></i></li>
<li><i class="fab fa-github"></i></li>
<li><i class="fab fa-linkedin-in"></i></li>
<li><i class="fab fa-instagram"></i></li>
</ul>
</footer>
<script src="js/app.js"></script>
<script src="js/category.js"></script>
</body>
</html>