-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (72 loc) · 2.01 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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Favorite Hobby</title>
</head>
<body>
<!-- Heading Tags -->
<h1>My Favorite Hobby</h1>
<h2>Why I Love It</h2>
<!-- Paragraph Tags -->
<p>
I enjoy playing Badminton because it allows me to relax. There's something incredibly satisfying about transforming a fat body into a lean one. Badminton helps me to unwind and de-stress, and I love exploring different styles and techniques.
</p>
<h2>How to Get Started</h2>
<!-- Ordered Lists -->
<ol>
<li>Gather your supplies (Bat, NonMarking Shoes, Feather Cock).</li>
<li>Find a comfortable Badminton Court with good lighting.</li>
<li>Start with simple techniques or play with professionals.</li>
<li>Practice regularly and don't be afraid to experiment new techniques.</li>
</ol>
<!-- Image -->
<img src="images/Badminton.jpeg"
alt="A beautiful shot is gonna happen"
/>
<br>
<!-- Table -->
<h2> Resources</h2>
<table>
<thead>
<tr>
<th>Resource Name</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>Basics to Birdie: The Complete Badminton Handbook for Beginners by Bors Gara </td>
<td>
A comprehensive book that covers techniques and tips for beginners
and experienced players alike.
</td>
</tr>
<br>
<tr>
<td>
<a href="https://www.wikihow.com/Play-Badminton">How to Play Badminton</a>
</td>
<td>
An online resource offering tutorials, articles, and inspiration for
players of all levels.
</td>
</tr>
<tr>
<td>
<a href="https://www.youtube.com/watch?v=7Oo98XY0rtA&ab_channel=BadmintonInsight">Badminton Insights</a>
</td>
<td>
Watch episodes from Badminton Insights show to learn and get
inspired.
</td>
</tr>
</tbody>
</table>
<!-- Link -->
<br>
<p>
To learn more about Badminton and find additional resources, visit
<a href="https://badminton-insight.com/">Badminton Insights</a>.
</p>
</body>
</html>