-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google-site-verification" content="g4K7KLncyfOUvayefA6OhwT-K-wkAhGPFgBxywDZzj0" />
<meta name="description" content="A workout application that allows the user to choose exercises
based on specific muscle categories and provides the user with vital information about these exercises.">
<link href="main.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Boogaloo|Nosifer" rel="stylesheet">
<title>Workout Application</title>
</head>
<body>
<main role="main">
<div id="container">
<section class="start-page">
<h1 class="insaiyan-physique">Insaiyan Physique</h1>
<h2 class="start-page-h2">A workout application to help you achieve your physique goals!</h2>
<button class="initialize-app-button">Let's Go!</button>
</section>
</div>
</main>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script src="https://www.youtube.com/iframe_api"></script>
<script type='text/javascript' src='config.js'></script>
<script type="text/javascript" src="index.js"></script>
</body>
</html>