<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Dramatic Token</title>
    <link rel="stylesheet" href="styles.css">
</head>
<body>
    <header>
        <div class="container">
            <h1>Dramatic Token</h1>
            <nav>
                <ul>
                    <li><a href="#about">About</a></li>
                    <li><a href="#tokenomics">Tokenomics</a></li>
                    <li><a href="#roadmap">Roadmap</a></li>
                    <li><a href="#team">Team</a></li>
                    <li><a href="#contact">Contact</a></li>
                </ul>
            </nav>
        </div>
    </header>
    <section id="hero">
        <div class="container">
            <h2>Welcome to Dramatic Token</h2>
            <p>Experience the thrill of crypto drama!</p>
            <a href="#about" class="btn">Learn More</a>
        </div>
    </section>
    <!-- Other sections (about, tokenomics, roadmap, team, contact) can be added here -->
    <footer>
        <div class="container">
            <p>&copy; 2024 Dramatic Token. All rights reserved.</p>
        </div>
    </footer>
</body>
</html>