-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
77 lines (65 loc) · 3.1 KB
/
index.html
File metadata and controls
77 lines (65 loc) · 3.1 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
<!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="styles.css" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Home page</title>
</head>
<body>
<div class="container-fluid bg-img">
<!--navbar-->
<ul class = "nav pe-4 pt-1 justify-content-end">
<li class="nav-item nav-custom">
<a class="nav-link active" 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 active" 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>
<!--text written-->
<h1>Don't<br><span>worry</span> we<br>got <span>your</span> <br>back.</h1>
</div>
<h3>Our Bestsellers</h3>
<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/7.png" alt="productImage">
<h3>Premium Parallettes MAX</h3>
<p>Sale Price: From 109,90 € TO 119,90 €</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>