-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (59 loc) · 2.36 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
<!DOCTYPE html>
<html language="en">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="webpage/webpagestyles.css">
<title>Home Page</title>
</head>
<body>
<script>
</script>
<div id="content">
<header>
<!-- Can enter a link here in the href that can go to download the apk or sum maybe in the href?-->
<a href=""><img alt="logo"src="webpage/logo.png" height="170px" width="340px" style="padding-top: 10px;"></a>
</header>
<nav>
<ul>
<li ><a href="index.html">Home</a></li>
<li ><a href="webpage/about.html">About The Author's</a></li>
<li ><a href="webpage/gymbitgallery.html">Photo Gallery</a></li>
</ul>
</nav>
<main>
<div class="col-container">
<div class="col-main">
<h2>About Gymbit</h2>
<p>Gymbit is an app that combines social media and fitness tracking into one cohesive environment. The app allows users to set their fitness goals and track their progress, while also following other users and seeing their progress as well. Aside from setting goals and seeing other users goals and progress, a user can post once a day with a photo or video of their workout and a short description of what their workout for the day was. Other users can then see this post on their feed and interact with it through likes and comments. Users are also able to track how many weeks they've consecutively hit their goals through streaks.</p>
</div>
<div class="col-sidebar">
<h2>Gymbit's Feature's</h2>
<ul>
<li>Ability to Track Customizable Goals</li>
<li>Stay in Touch With Your Gym Parter's Progress</li>
<li>Can Show and Track Daily Workout Routines</li>
<li>See How Many People are Watching Your Workouts</li>
<li>Streaks to Show Many Weeks You've Hit Your Goals</li>
<li>...And More</li>
</ul>
</div>
</div>
<h1 style="text-align: center;">Gymbit In Action</h1>
<!--If we want to upload the video in the folder we will use this, otherwise
we will upload to you and just get the videoid and replace it-->
<!--
<video width="500px" height="500px"controls="controls"/>
<source src="vid.mp4"type="video/mp4">
</video>
-->
<div align="center">
<iframe title="DubCity" height="275" width="550" src="https://www.youtube.com/embed/aAWduS51fSE">
</iframe>
</div>
</main>
<footer>
<p>©Gymbit Boi's</p>
</footer>
</div>
</body>
</html>