cricket_app / templates /index.html
dschandra's picture
Create templates/index.html
3b62e7b verified
<!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>&copy; 2025 Cricket Tournament. All rights reserved.</p>
</footer>
</body>
</html>