-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
164 lines (162 loc) · 4.93 KB
/
products.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
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html>
<head>
<title>M3 menwears</title>
<link rel="shortcut icon" href="img/logo.ico" />
<meta charset="utf-8" />
<link href="https://fonts.googleapis.com/css2?family=Bakbak+One&family=Oswald:wght@200;300;500&display=swap" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/app.css" />
</head>
<body>
<header style="background-color: rgb(3, 53, 94); box-shadow: 0 1px 4px rgba(0, 0, 0, .1);">
<div class="container" style="padding-top: 8px;padding-bottom: 8px;">
<div class="grid grid-two">
<a href="index.html"><img src="img/GROOVY.png" alt="logo" style="height: 64px ;" />
</div>
<div class="grid grid-two" style="padding-top: 24px;text-align: right;">
<span><a href="mycart.html" class="cart">My Cart</a></span>
</div>
</div>
</header>
<main class="container">
<nav id="product-nav" class="full">
<li><a href="index.html" class="alias">Home</a></li>
<li><a href="products.html" class="alias">Products</a></li>
<li><a href="about.html" class="alias">About</a></li>
<li><a href="contact.html" class="alias">Contact</a></li>
<li style="float: right" class="aliasright"><a href="login.html">Login</a></li>
<li style="float: right" class="aliasright"><a href="register.html">Register</a></li>
</nav>
<div class="full">
<div class="grid grid-three">
<h1 class="text-blue">SHOES</h1>
<section class="box product">
<h2>Nike</h2>
<img src="img/product/shoes/1.jpg" />
<p>Nike shoes man</p>
</section>
<section class="box product">
<h2>Adidas</h2>
<img src="img/product/shoes/2.jpg" />
<p>adidas shoes man</p>
</section>
<section class="box product">
<h2>Reebok</h2>
<img src="img/product/shoes/3.jpg" />
<p>Reebok shoes man</p>
</section>
<section class="box product">
<h2>Puma</h2>
<img src="img/product/shoes/4.jpg" />
<p>Puma shoes man</p>
</section>
<section class="box product">
<h2>SRX</h2>
<img src="img/product/shoes/5.jpg" />
<p>SRX shoes man</p>
</section>
</div>
<div class="grid grid-three">
<h1 class="text-blue">JEANS</h1>
<section class="box product">
<h2>Levi's</h2>
<img src="img/product/jeans/1.jpg" />
<p>Levi's jeans man</p>
</section>
<section class="box product">
<h2>Denim</h2>
<img src="img/product/jeans/2.jpg" />
<p>Denim jeans man</p>
</section>
<section class="box product">
<h2>Zara</h2>
<img src="img/product/jeans/3.jpg" />
<p>Zara jeans man</p>
</section>
<section class="box product">
<h2>Lonet</h2>
<img src="img/product/jeans/4.jpg" />
<p>Lonet jeans man</p>
</section>
<section class="box product">
<h2>spicer</h2>
<img src="img/product/jeans/5.jpg" />
<p>Spicer jeans man</p>
</section>
</div>
<div class="grid grid-three">
<h1 class="text-blue">T-SHIRTS</h1>
<section class="box product">
<h2>M3 exclusive</h2>
<img src="img/product/tshirts/1.jpg" />
<p>M3 tshirts man</p>
</section>
<section class="box product">
<h2>Lonet</h2>
<img src="img/product/tshirts/2.jpg" />
<p>Lonet tshirts man</p>
</section>
<section class="box product">
<h2>Motive</h2>
<img src="img/product/tshirts/3.jpg" />
<p>Motive tshirts man</p>
</section>
<section class="box product">
<h2>Club X</h2>
<img src="img/product/tshirts/4.jpg" />
<p>Club X tshirts man</p>
</section>
<section class="box product">
<h2>Tzax</h2>
<img src="img/product/tshirts/5.jpg" />
<p>Tzax tshirts man</p>
</section>
</div>
</div>
</main>
<footer>
<div class="container">
<div class="full">
<div class="grid grid-three">
<h4 class="text-blue">PRODUCTS</h4>
<ul>
<li>T-shirts</li>
<li>Jeans</li>
<li>Shoes</li>
</ul>
</div>
<div class="grid grid-three">
<h4 class="text-blue">LINKS</h4>
<ul>
<li>Team</li>
<li>Products</li>
<li>Price</li>
</ul>
</div>
<div class="grid grid-three">
<h4 class="text-blue">CONTACT</h4>
<ul>
<li>Email</li>
<li>Instagram</li>
<li>Facebook</li>
</ul>
</div>
</div>
</div>
<div style="text-align: center; padding: 16px;">
© Copyright - M3 - Menwears
</div>
</footer>
<script type="text/javascript">
(function(d) {
var products = document.getElementsByClassName('product');
for(var i = products.length - 1;i >= 0 ; --i) {
products[i].onclick = function() {
var src = this.getElementsByTagName('img')[0].src;
document.location.href = 'demo.html#' + src;
}
}
})(document);
</script>
</body>
</html>