-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcali.html
More file actions
115 lines (99 loc) · 4.37 KB
/
cali.html
File metadata and controls
115 lines (99 loc) · 4.37 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<link href="style2.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Q&A</title>
</head>
<body>
<!--navbar-->
<header class = "container">
<ul class = "nav pt-1 justify-content-center">
<li class="nav-item nav-custom">
<a class="nav-link actived" href="index.html">Home</a>
</li>
<li class="nav-item nav-custom">
<a class="nav-link not-active" href="cali.html">Calisthenics</a>
</li>
<li class="nav-item nav-custom">
<a class="nav-link actived" href="about.html">About us</a>
</li>
<li class="nav-item nav-custom">
<a class="nav-link not-active" href="Q.html">Q&A</a>
</li>
</ul>
</header>
<!--nav end-->
<h1>OUR PRODUCTS:</h1>
<div class="cards">
<div class="card">
<img src="images/10.png" alt="productImage">
<h3>Elbow Sleeves</h3>
<p>Price: 19,90 €</p>
</div>
<div class="card">
<img src="images/3.png" alt="productImage">
<h3>Performance Wrist Wraps</h3>
<p>Price: 19,90 €</p>
</div>
<div class="card">
<img src="images/4.png" alt="productImage">
<h3>Workout Rings Set</h3>
<p>Price: 49,90 €</p>
</div>
<div class="card">
<img src="images/5.png" alt="productImage">
<h3>Premium Liquid Chalk</h3>
<p>Sale Price: From 13,90 € to 11,90 €</p>
</div>
<div class="card">
<img src="images/7.png" alt="productImage">
<h3>Premium Parallettes MAX</h3>
<p>Sale Price: From 109,90 € TO 119,90 €</p>
</div>
<div class="card">
<img src="images/1.png" alt="productImage">
<h3>Vintage Tank Men</h3>
<p>Price: 27,90 €</p>
</div>
<div class="card">
<img src="images/9.png" alt="productImage">
<h3>Premium Parallettes PRO</h3>
<p>Sale Price: From 89,90 € to 99,90 €</p>
</div>
<div class="card">
<img src="images/8.png" alt="productImage">
<h3>Skinny Sweatpants Men</h3>
<p>Price: 49,90 €</p>
</div>
<div class="card">
<img src="images/6.png" alt="productImage">
<h3>Premium Resistance Bands</h3>
<p>Price: From 11,90 €</p>
</div>
<div class="card">
<img src="images/2.png" alt="productImage">
<h3>Pullup bar</h3>
<p>Price: 100 €</p>
</div>
</div>
<footer>
<div class = "watermark">© 2021 Company, Inc</div>
<ul id = "bar">
<li><a href="index.html">Home</a></li>
<li><a href="cali.html">Calisthenics</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="Q.html">Q&A</a></li>
</ul>
<div>
<a href="https://www.facebook.com/" target="_blank" class="fa fa-facebook"></a>
<a href="https://www.instagram.com/" target="_blank" class="fa fa-instagram"></a>
<a href="https://twitter.com/" target="_blank" class="fa fa-twitter"></a>
<a href="https://linkedin.com/" target="_blank" class="fa fa-linkedin"></a>
</div>
</footer>
</body>
</html>