-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshoes.html
More file actions
123 lines (109 loc) · 4.44 KB
/
shoes.html
File metadata and controls
123 lines (109 loc) · 4.44 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Shoes</title>
<!--Remy Sharp Shim -->
<!--[if lte IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js" type="text/javascript" ></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/lightbox.css">
<link rel="stylesheet" type="text/css" href="css/styles.css">
</head>
<body class="home">
<header>
<div id="logo">
<a href="index.html">
<img src="images/logo.png" alt="logo">
</a>
</div>
<nav id="primary">
<ul>
<li>
<a href="index.html">HOME</a>
</li>
<li>
<a href="dresses.html">DRESSES</a>
</li>
<li class="active">
<a href="shoes.html">SHOES</a>
</li>
<li>
<a href="about.html">ABOUT</a>
</li>
<li>
<a href="contact.html">CONTACT</a>
</li>
</ul>
</nav>
</header>
<div id="wrapper">
<div id="banner">
<h1>Shoes</h1>
<div id="patterns"></div>
</div>
<main>
<div class="products">
<!-- Product One -->
<a class="product-link" href="/product.html "><div class="card">
<img src="images/Access.jpg" alt="Avatar" style="width:100%">
<div class="container">
<h1><b>Shabanuk-World's Traditional Brand</b></h1>
</div>
</div>
</a>
<a class="product-link" href="/product.html "><div class="card">
<img src="images/access1.jpg" alt="Avatar" style="width:100%">
<div class="container">
<h1><b>Stylish Balochi Sandal</b></h1>
</div>
</div>
</a>
<!-- Product Two -->
<a class="product-link" href="/product.html "><div class="card">
<img src="images/access3.jpg" alt="Avatar" style="width:100%">
<div class="container">
<h1><b>Cultural look</b></h1>
</div>
</div>
</a>
<a class="product-link" href="/product.html "><div class="card">
<img src="images/access4.jpg" alt="Avatar" style="width:100%">
<div class="container">
<h1><b>Stylish Balochi slipper</b></h1>
</div>
</div>
</a>
</div>
</main>
<footer>
<ul>
<li>Copyright 2018 ©</li>
<li>All Rights Reserved</li>
<li>
<a href="../index.html">Web Design by Sara</a>
</li>
</ul>
</footer>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</div>
<!--end wrapper-->
<p class="valid">
<a href="https://validator.w3.org/nu/?doc=http%3A%2F%2Fcompass.northseattle.edu%2F~sshahbai%2Fit111%2Ffinal%2Fshoes.html">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512">
<title>HTML5 Logo</title>
<path d="M108.4 0h23v22.8h21.2V0h23v69h-23V46h-21v23h-23.2M206 23h-20.3V0h63.7v23H229v46h-23M259.5 0h24.1l14.8 24.3L313.2 0h24.1v69h-23V34.8l-16.1 24.8l-16.1-24.8v34.2h-22.6M348.7 0h23v46.2h32.6V69h-55.6"
/>
<path fill="#e44d26" d="M107.6 471l-33-370.4h362.8l-33 370.2L255.7 512" />
<path fill="#f16529" d="M256 480.5V131H404.3L376 447" />
<path fill="#ebebeb" d="M142 176.3h114v45.4h-64.2l4.2 46.5h60v45.3H154.4M156.4 336.3H202l3.2 36.3 50.8 13.6v47.4l-93.2-26"
/>
<path fill="#fff" d="M369.6 176.3H255.8v45.4h109.6M361.3 268.2H255.8v45.4h56l-5.3 59-50.7 13.6v47.2l93-25.8" />
</svg>
</a>
</p>
<script src="js/lightbox-plus-jquery.min.js"></script>
<script src="js/scroll.js"></script>
</body>
</html>