-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
74 lines (72 loc) · 2.72 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
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Football Website</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>
<header>
<h1>Welcome to the Football Training Hub</h1>
<p>Improve your football skills with professional training and exercises!</p>
</header>
<section class="hero">
<div class="hero-content">
<h1>Master the Art of Football</h1>
<p>Join our personalized training programs and take your game to the next level!</p>
<a href="training.html" class="btn">Start Training</a>
</div>
</section>
<section class="features">
<h2>What We Offer</h2>
<div class="feature-cards">
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSYDTl-4sWcB7q-vjoJyCBPOwWLuSNjr_nb5A&s" alt="Training">
<h3>Personalized Training</h3>
<p>Tailored football training programs for all levels.</p>
</div>
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSXUwlgIQZ9MYioXY-8AXX5rS0L7uFeD9uaUA&s" alt="Skills">
<h3>Skills Development</h3>
<p>Improve your techniques with expert guidance.</p>
</div>
<div class="card">
<img src="https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTg_-FzaT9pXojyCNwuVgabAhqA5tSQ2BTtRQ&s" alt="Fitness">
<h3>Fitness Plans</h3>
<p>Enhance your physical abilities with specialized fitness routines.</p>
</div>
</div>
</section>
<section class="testimonials">
<h2>What Our Clients Say</h2>
<div class="testimonial-cards">
<div class="testimonial-card">
<p>"The training programs have helped me improve my game dramatically!"</p>
<h4>John Doe</h4>
</div>
<div class="testimonial-card">
<p>"I learned new techniques and my confidence on the field has skyrocketed."</p>
<h4>Jane Smith</h4>
</div>
</div>
</section>
<section class="social-media">
<h2>Connect with Us</h2>
<a href="https://instagram.com" target="_blank">Instagram</a>
<a href="https://tiktok.com" target="_blank">TikTok</a>
</section>
<footer>
<div>Author Paulino De Paul</div>
<div>all copyright 2024</div>
</footer>
</body>
</html>