-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
41 lines (41 loc) · 1.78 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
<!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="index.css">
<script src="index.js" defer></script>
<title>Main Page - GymMate+</title>
</head>
<body>
<div id="main-container">
<h1>Welcome to GymMate+</h1>
<h2>Your personal calorie counter and workout planner</h2>
<p>Select an option below to get started:</p>
<div class="button-container">
<button id="calorie-counter-button">Calorie Counter</button>
<button id="workout-planner-button">Workout Planner</button>
</div>
</div>
<div class="info-container">
<h2>Information</h2>
<div id="info-inner-container" class="info-content">
<h3>Contributors</h3>
<div id="creators" class="creators-container">
<p><a href="https://www.linkedin.com/in/anfeng03/">Andy Feng Chen</a></p>
<p><a href="https://www.linkedin.com/in/jacob-mcgreen-50690323a/">Jacob Mcgreen</a></p>
<p><a href="https://www.linkedin.com/in/jackson-pan-165038261/">Jackson Pan</a></p>
</div>
<div id="infotext">
<h3>Our Goals</h3>
Our project is all about sharing our passion for fitness with everyone.
We provide ready-made workout plans and calorie advice for those new to fitness or those who want a helping hand.
Whether you're just starting or already on your fitness journey, we've got you covered with our expertly crafted plans.
</div>
<div id="Credits">
<p>Wonderful backgrounds used from Edoardo Zuliani</p>
</div>
</div>
</div>
</body>
</html>