-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbiceps_triceps.html
66 lines (60 loc) · 2.14 KB
/
biceps_triceps.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
<!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>Biceps & Triceps</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="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">
</div>
</main>
<script src="script.js"></script>
</body>
</html>