-
Notifications
You must be signed in to change notification settings - Fork 0
/
products.html
85 lines (85 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>FOOTBALL EQUIPMENT AND ACCESSORIZES| FOOTY</title>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<div class="container">
<div class="row flex-between">
<a href="index.html" class="logo">FOOTY</a>
<nav class="nav main-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="contacts.html">Contacts</a></li>
</ul>
</nav>
</div>
</div>
</header>
<main>
<div class="container">
<h1 class="heading">Products</h1>
<div class="row">
<div class="col product-col">
<div class="product">
<a href="products/nike-mercurial-superfly-360-elite-fg.html">
<img class="img-responsive" src="img/mercurial-superfly-360-elite-football-boot-p11V5q.jpg" alt="NIKE MERCURIAL SUPERFLY 360 ELITE FG">
<div class="product-desc">
<p class="title">NIKE MERCURIAL SUPERFLY 360 ELITE FG</p>
<p class="product-type">Firm-Ground Football Boot</p>
<p class="price">230$</p>
</div>
</a>
</div>
</div>
<div class="col product-col">
<div class="product">
<a href="products/puma-one-gold-fg.html">
<img class="img-responsive" src="img/puma-one-gold-fg.jpg" alt="PUMA ONE GOLD FG">
<div class="product-desc">
<p class="title">PUMA ONE GOLD FG</p>
<p class="product-type">Firm-Ground Football Boot</p>
<p class="price">210$</p>
</div>
</a>
</div>
</div>
<div class="col product-col">
<div class="product">
<a href="products/predator-18-firm-ground-boots.html">
<img class="img-responsive" src="img/predator-18-firm-ground-boots.jpg" alt="ADIDAS PREDATOR 18+ FIRM GROUND BOOTS">
<div class="product-desc">
<p class="title">ADIDAS PREDATOR 18+ FIRM GROUND BOOTS</p>
<p class="product-type">Firm-Ground Football Boot</p>
<p class="price">179$</p>
</div>
</a>
</div>
</div>
<!--<div class="col">-->
<!--<div class="product">-->
<!--<a href="products/predator-18-firm-ground-boots.html">-->
<!--<img class="img-responsive" src="img/predator-18-firm-ground-boots.jpg" alt="ADIDAS PREDATOR 18+ FIRM GROUND BOOTS">-->
<!--<p class="title">ADIDAS PREDATOR 18+ FIRM GROUND BOOTS</p>-->
<!--<p class="product-type">Firm-Ground Football Boot</p>-->
<!--<p class="price">179$</p>-->
<!--</a>-->
<!--</div>-->
<!--</div>-->
</div>
</div>
</main>
<footer>
<div class="container">
<div class="row">
<p>©All rights reserved</p>
</div>
</div>
</footer>
</body>
</html>