forked from Avdhesh-Varshney/WebMasterLog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (35 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FitnessPro</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<div class="logo">FitnessPro</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="exercises.html">Exercises</a></li>
<li><a href="plans.html">Plans</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</nav>
</header>
<main>
<section id="home">
<h1 class="animate-fade-in">Welcome to FitnessPro</h1>
<p class="animate-slide-in">Your journey to a healthier life starts here.</p>
<button class="animate-bounce" onclick="window.location.href='plans.html'">View Plans</button>
</section>
</main>
<script src="scripts.js"></script>
</body>
</html>