-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.html
More file actions
53 lines (52 loc) · 1.45 KB
/
main.html
File metadata and controls
53 lines (52 loc) · 1.45 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
<!DOCTYPE html>
<html>
<head>
<title>Workout Exercises</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
.video-container {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.video-item {
margin: 10px;
}
.pagination {
display: flex;
justify-content: center;
padding: 20px 0;
}
.pagination a {
margin: 0 10px;
text-decoration: none;
}
.pagination a.active {
font-weight: bold;
}
</style>
</head>
<body>
<h1>Workout Exercises</h1>
<div id="Arms" class="video-container">
<h2>Arms</h2>
<!-- Add your video items here -->
<div class="video-item">
<video src="path_to_your_video" controls></video>
<img src="path_to_your_thumbnail" alt="Video thumbnail">
</div>
<!-- Add more video items as needed -->
</div>
<!-- Repeat the above div for each category (Chest, Legs, etc.) -->
<!-- Add a pagination at the bottom of each page -->
<div class="pagination">
<a href="#">«</a>
<a href="#">1</a>
<a href="#" class="active">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">»</a>
</div>
</body>
</html>