Spaces:
Runtime error
Runtime error
File size: 1,500 Bytes
3b62e7b |
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 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Cricket Tournament</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<h1>Welcome to the Cricket Tournament App</h1>
<nav>
<ul>
<li><a href="/live_scoring">Live Scoring</a></li>
<li><a href="/scorecard">Professional Scorecard</a></li>
<li><a href="/leaderboards">Leaderboards</a></li>
<li><a href="/tournament">Organize Tournament</a></li>
<li><a href="/lookup">Player/Team/Umpire Lookup</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Features</h2>
<ul>
<li><a href="/live_scoring">Get instant updates on ongoing matches with Live Scoring</a></li>
<li><a href="/scorecard">Explore player performances and match outcomes with a Professional Scorecard</a></li>
<li><a href="/leaderboards">Track and compare your cricket stats with Leaderboards</a></li>
<li><a href="/tournament">Seamlessly Organize and Plan Tournaments</a></li>
<li><a href="/lookup">Find players, teams, umpires, and scorers</a></li>
</ul>
</section>
</main>
<footer>
<p>© 2025 Cricket Tournament. All rights reserved.</p>
</footer>
</body>
</html>
|