Sport betting

 avatar
Cammah
html
a year ago
1.9 kB
9
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Sports Betting</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <h1>Welcome to Our Sports Betting Platform</h1>
        <nav>
            <ul>
                <li><a href="#home">Home</a></li>
                <li><a href="#sports">Sports</a></li>
                <li><a href="#betting">Betting</a></li>
                <li><a href="#about">About Us</a></li>
                <li><a href="#contact">Contact</a></li>
            </ul>
        </nav>
    </header>
    
    <main>
        <section id="home">
            <h2>Home</h2>
            <p>Welcome to our sports betting website. Place your bets on your favorite sports!</p>
        </section>
        
        <section id="sports">
            <h2>Sports</h2>
            <p>Choose from a variety of sports to place your bets on:</p>
            <ul>
                <li>Football</li>
                <li>Basketball</li>
                <li>Tennis</li>
                <li>Cricket</li>
                <!-- Add more sports as needed -->
            </ul>
        </section>
        
        <section id="betting">
            <h2>Betting</h2>
            <p>Place your bets here:</p>
            <!-- Add form elements for users to input their bets -->
        </section>
        
        <section id="about">
            <h2>About Us</h2>
            <p>Learn more about our sports betting platform.</p>
        </section>
        
        <section id="contact">
            <h2>Contact</h2>
            <p>Contact us for any inquiries or support.</p>
            <!-- Add contact form or contact information -->
        </section>
    </main>

    <footer>
        <p>&copy; 2024 Sports Betting Platform. All rights reserved.</p>
    </footer>
</body>
</html>
Editor is loading...