-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (32 loc) · 1.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home Page</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="signup.html">Sign Up</a></li>
</ul>
</nav>
</header>
<section class="images-section">
<img src="/images/bjj-001.jpeg" alt="Image 1">
<img src="/images/bjj-002.jpeg" alt="Image 2">
<img src="/images/bjj-003.jpeg" alt="Image 3">
</section>
<section class="description-section">
<h2>About Brazilian Jiu-Jitsu (BJJ)</h2>
<p>Brazilian Jiu-Jitsu (BJJ) is a martial art and combat sport system that focuses on grappling and especially ground fighting. BJJ was formed from Kodokan Judo ground fighting (Newaza) fundamentals that were taught by a number of individuals including Takeo Yano, Mitsuyo Maeda, and Soshihiro Satake.</p>
<p>Brazilian Jiu-Jitsu eventually came to be its own defined combat sport through the innovations, practices, and adaptation of Gracie Jiu-Jitsu and more modern developments in martial arts. BJJ promotes the concept that a smaller, weaker person can successfully defend against a bigger, stronger assailant by using proper technique and leverage, most notably by applying joint-locks and chokeholds to defeat the other person. BJJ training can be used for sport grappling tournaments and in self-defense situations.</p>
</section>
<footer>
<p>© 2024 Brazilian Jiu-Jitsu Academy. All rights reserved.</p>
</footer>
</body>
</html>