-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrongWorkout.html
More file actions
33 lines (33 loc) · 1003 Bytes
/
wrongWorkout.html
File metadata and controls
33 lines (33 loc) · 1003 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>HECA Fitness - Sign Up</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="logo">
<a href="index.html"><img src="Images/hecafitness.png" alt="HECA Fitness Logo"></a>
</div>
<nav>
<ul>
<li><a href="meal-prep.html">Meal Prep</a></li>
<li><a href="exercise.html">Exercise</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="profile.html">Profile</a></li>
</ul>
</nav>
</header>
<main>
<div class="hero">
<h1>Email doesn't exist. Register or insert a new email.</h1>
<a href="/exercise.html"> Return to Exercise </a>
</div>
</main>
<footer>
<p>© 2024 HECA Fitness</p>
</footer>
</body>
</html>