-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
64 lines (52 loc) · 3.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet" >
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<title>About us</title>
</head>
<body>
<section>
<ul class="nav nav-pills nav-bar">
<li class="nav-item">
<a class="nav-link" href="index.html">Tournaments</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="about.html">About us</a>
</li>
<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>
</li>
</ul>
</section>
<div class="about-h">
<h1>About Us</h1>
</div>
<section class="about-section">
<p>Welcome to <strong>Raccoon Score</strong>, the ultimate platform for the seamless organization and management of martial arts tournaments.</p>
<p>At <strong>Raccon Score</strong>, our primary goal is to streamline the process of registering, organizing, and executing martial arts tournaments. Serving as a centralized hub, our platform empowers tournament organizers to efficiently manage all aspects of their events, from participant registration to fight scheduling and result publication.</p>
<p>Our platform caters to a diverse range of users, including:</p>
<ul>
<li><strong>Tournament Organizers:</strong> Individuals or entities responsible for orchestrating martial arts events utilize our website to streamline the registration, scheduling, and result management processes for their tournaments.</li>
<li><strong>Tournament Participants:</strong> Martial arts practitioners eager to compete in registered tournaments access our platform to enroll in events, access relevant tournament information, and receive updates on their participation status.</li>
<li><strong>Referees and Judges:</strong> Officials tasked with overseeing fights and assessing participant performance during tournaments leverage our website to access tournament rules, fight schedules, and to record match results.</li>
<li><strong>Spectators and Enthusiasts:</strong> Fans keen on following martial arts tournaments can visit our website to stay informed about upcoming events, view live results, and access engaging content related to the sport.</li>
</ul>
<p>At <strong>Raccoon Score</strong>, we're dedicated to providing a user-friendly and comprehensive platform that caters to the diverse needs of the martial arts community. Join us in embracing the excitement and camaraderie of martial arts tournaments like never before.</p>
<div class="brand">
<img src="assets/raccoon.png" alt="Logo" class="brand-logo">
<p class="brand-name">Raccoon Score</p>
</div>
</section>
<footer class="footer">
<div class="text-center p-3">
© 2024 Copyright:
<a class="text-white" href="index.html">raccoonscore.com</a>
</div>
</footer>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>