forked from Technigo/project-news-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
86 lines (80 loc) · 4.27 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
75
76
77
78
79
80
81
82
83
84
85
86
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tech-Driven Triumphs: How Innovation is Shaping Athlete Performance</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<!-- Header and navigation -->
<header class="header">
<div class="logo">SPORTSTECH</div>
<nav class="nav">
<a href="#">Home</a>
<a href="#">Articles</a>
<a href="#">Sports Tech</a>
<a href="#">Contact Us</a>
</nav>
</header>
<!-- Hero Section -->
<section class="hero">
<h1>TECH-DRIVEN TRIUMPHS: HOW INNOVATION IS SHAPING ATHLETE PERFORMANCE</h1>
</section>
<!-- Articles section -->
<section class="grid-container">
<div class="main-article">
<img src="istockphoto-916859188-612x612.jpg" alt="main-article img">
<h2>The Role of Technology in Enhancing Athlete Performance: A Game-Changer in Modern Sports</h2>
<p class="main-article-text">This article explores how technology is revolutionizing athlete performance
across various sports. It
covers advancements in wearable tech, data analytics, virtual reality training, and biomechanical
analysis. The article provides insights from experts, including coaches and athletes, on how these
technologies are being integrated into training regimens to optimize performance, prevent injuries, and
extend athletic careers. It also discusses the potential ethical concerns and the future of technology
in sports. <br><br><a href="#">Read More</a></p>
</div>
<div class="related-article">
<img src="istockphoto-906511890-612x612.jpg" alt="Related Article 1">
<h3>How Wearable Technology is Transforming Athlete Training Routines</h3>
<p>This article focuses on the impact of wearable devices, such as smartwatches and fitness trackers, on
athlete training. It discusses how these devices provide real-time data on heart rate, sleep patterns,
and recovery times, allowing for more personalized and effective training plans.</p>
<a href="#">Read More</a>
</div>
<div class="related-article">
<img src="istockphoto-1330061008-612x612.jpg" alt="Related Article 2">
<h3>Data Analytics in Sports: The New Frontier of Competitive Edge</h3>
<p>This piece delves into how data analytics is being used by coaches and teams to gain a competitive
advantage. It highlights how data-driven insights can optimize training, strategy, and in-game
decision-making, leading to better performance outcomes.</p>
<a href="#">Read More</a>
</div>
<div class="related-article">
<img src="pexels-photo-8097890.webp" alt="Related Article 3">
<h3>Virtual Reality Training: Preparing Athletes for Real-World Scenarios</h3>
<p>This article explores the use of virtual reality (VR) as a training tool for athletes. It discusses how
VR can simulate game situations, allowing athletes to practice and refine their skills in a controlled
environment, thereby improving their reaction times and decision-making abilities.</p>
<a href="#">Read More</a>
</div>
<div class="related-article">
<img src="istockphoto-1209784765-612x612.jpg" alt="Related Article 4">
<h3>Biomechanical Analysis: The Science Behind Perfecting Athletic Performance</h3>
<p>This article examines the role of biomechanical analysis in enhancing athletic performance. It explains
how detailed studies of movement patterns help in refining techniques, preventing injuries, and
improving overall efficiency.</p>
<a href="#">Read More</a>
</div>
</section>
<!-- Footer-->
<footer>
<div>
<h4>FOLLOW US</h4>
<a class="footer-link" href="#">Facebook</a>
<a class="footer-link" href="#">Twitter</a>
<a class="footer-link" href="#">Instagram</a>
</div>
</footer>
</body>
</html>