-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
65 lines (56 loc) · 2.51 KB
/
about.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
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="training.html">Training</a></li>
<li><a href="skills.html">Skills</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<!-- About Section -->
<section class="about-section">
<div class="about-container">
<img src="trainer.jpg" alt="Trainer Photo" class="trainer-photo">
<div class="about-content">
<h2>About the Trainer</h2>
<p>Hi, I'm a professional football trainer with over 10 years of experience in coaching players of all levels. Whether you're just starting or looking to refine your skills, I'm here to help you reach your full potential.</p>
<p>Join me in this journey to become a better player, improve your fitness, and master new techniques with personalized training plans.</p>
</div>
</div>
</section>
<!-- Contact Form Section -->
<section class="contact-section">
<h3>Contact Us</h3>
<form action="submit_contact.php" method="post" class="styled-form">
<label for="name">Name:</label>
<input type="text" id="name" name="name" required>
<label for="email">Email:</label>
<input type="email" id="email" name="email" required>
<label for="message">Message:</label>
<textarea id="message" name="message" rows="4" required></textarea>
<input type="submit" value="Submit">
</form>
</section>
<!-- Private Training Registration Section -->
<section class="registration-section">
<h3>Register for Private Training</h3>
<form action="submit_registration.php" method="post" class="styled-form">
<label for="fullname">Full Name:</label>
<input type="text" id="fullname" name="fullname" required>
<label for="age">Age:</label>
<input type="number" id="age" name="age" required>
<label for="email-register">Email:</label>
<input type="email" id="email-register" name="email-register" required>
<input type="submit" value="Register">
</form>
</section>
</body>
</html>