-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkout.html
110 lines (94 loc) · 3.95 KB
/
workout.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>RV GymAssist</title>
</head>
<body>
<!-- Nav start -->
<nav class="nav-bar">
<div class="logo">
<a href="index.html"> <img src="Logo2.png" alt="logo"></a>
<h1>RV GymAssist</h1>
</div>
<div class="right-nav">
<div class="select-box">
<div class="select-heading"><span>All Workouts</span>
<div class="arrow"><img src="arrow.svg" alt="arrow"></div>
<div class="options">
<a href="workout.html">
<div class="option">All Workouts</div>
</a>
<a href="chest.html">
<div class="option">Chest Workouts</div>
</a>
<a href="back.html">
<div class="option">Back Workouts</div>
</a>
<a href="shoulder.html">
<div class="option">Shoulders</div>
</a>
<a href="biceps_triceps.html">
<div class="option">Biceps & Triceps</div>
</a>
<a href="leg.html">
<div class="option">Leg Workouts</div>
</a>
</div>
</div>
</div>
<img src="chatbot.svg" alt="chatbot" class="chat-image">
</div>
</nav>
<!-- Nav End -->
<!-- Main start -->
<main>
<!-- Chat-Bot start -->
<div class="chat-box">
<div class="chat-container">
<h1 class="Assistant">Talk to your own Assistant...</h1>
</div>
<div class="input-area">
<input type="text" class="prompt" placeholder="ask anything...">
<button><img src="btn.svg" alt="btn-image"></button>
</div>
<!-- Chat-Bot end -->
</div>
<div class="svgs">
<img src="workout1.gif" alt="" width="200px">
<img src="workout2.gif" alt="" width="200px">
<img src="workout3.gif" alt="" width="200px">
<img src="workout4.gif" alt="" width="200px">
<img src="workout5.gif" alt="" width="200px">
<img src="back1.gif" alt="" width="200px">
<img src="back2.gif" alt="" width="200px">
<img src="back3.gif" alt="" width="200px">
<img src="back4.gif" alt="" width="200px">
<img src="back5.gif" alt="" width="200px">
<img src="chest1.gif" alt="" width="200px">
<img src="chest2.gif" alt="" width="200px">
<img src="chest3.gif" alt="" width="200px">
<img src="chest4.gif" alt="" width="200px">
<img src="chest5.gif" alt="" width="200px">
<img src="biceps1.gif" alt="" width="200px">
<img src="biceps2.gif" alt="" width="200px">
<img src="biceps3.gif" alt="" width="200px">
<img src="triceps1.gif" alt="" width="200px">
<img src="triceps2.gif" alt="" width="200px">
<img src="shoulder1.gif" alt="" width="200px">
<img src="shoulder2.gif" alt="" width="200px">
<img src="shoulder3.gif" alt="" width="200px">
<img src="shoulder4.gif" alt="" width="200px">
<img src="shoulder5.gif" alt="" width="200px">
<img src="leg.gif" alt="" width="200px">
<img src="leg2.gif" alt="" width="200px">
<img src="leg3.gif" alt="" width="200px">
<img src="leg4.gif" alt="" width="200px">
<img src="leg5.gif" alt="" width="200px">
</div>
</main>
<script src="script.js"></script>
</body>
</html>