-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
149 lines (126 loc) · 3.62 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Gymshark E-Commerce</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap" rel="stylesheet">
<style>
body {
font-family: 'Open Sans', sans-serif;
background-color: #f8f9fa;
margin: 0;
/* Added to remove default margin */
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Roboto', sans-serif;
}
.navbar {
background-color: #343a40;
}
.navbar-brand {
font-size: 2.5rem;
color: #ffffff;
}
.navbar-nav .nav-link {
color: #ffffff !important;
}
.navbar-nav .nav-link:hover {
color: #f8f9fa !important;
}
.card {
border: none;
transition: transform 0.3s;
}
.card:hover {
transform: translateY(-5px);
}
.card-img-top {
height: 200px;
object-fit: cover;
}
.card-title {
font-size: 1.2rem;
font-weight: bold;
color: #343a40;
}
.card-text {
color: #6c757d;
}
.btn-primary {
background-color: #007bff !important;
border-color: #007bff !important;
}
.btn-primary:hover {
background-color: #0056b3 !important;
border-color: #0056b3 !important;
}
.footer {
background-color: #343a40;
color: #f8f9fa;
padding: 20px 0;
text-align: center;
}
/* Style for the video container */
.video-container {
position: relative;
padding-bottom: 56.25%;
/* 16:9 aspect ratio */
height: 0;
overflow: hidden;
}
/* Style for the video */
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}
</style>
</head>
<body>
<nav class="navbar navbar-expand-lg navbar-dark">
<div class="container">
<a class="navbar-brand" href="home.html">Gymshark</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html" target="_blank">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="shop.html">Shop</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Video Container -->
<div class="container-fluid p-0">
<div class="video-container">
<iframe src="your_video.mp4" frameborder="0" allowfullscreen loop muted autoplay></iframe>
</div>
</div>
<div class="footer">
<p>© 2024 Gymshark E-Commerce</p>
</div>
<!-- Bootstrap JS, jQuery, and Popper.js -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js"></script>
</body>
</html>