Untitled

mail@pastecode.io avatar
unknown
plain_text
7 months ago
1.6 kB
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Study Mania</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f0f0f0;
        }

        header {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
        }

        h1 {
            margin-top: 0;
        }

        main {
            padding: 20px;
        }

        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>

<body>
    <header>
        <h1>Welcome to Study Mania</h1>
    </header>
    <main>
        <p>Study Mania is your one-stop destination for all things related to studying and academic success. Whether you're looking for study tips, exam strategies, or motivation to keep going, you'll find it all here.</p>
        <h2>Featured Articles</h2>
        <ul>
            <li><a href="#">Top 10 Study Tips</a></li>
            <li><a href="#">How to Stay Motivated</a></li>
            <li><a href="#">Effective Note-Taking Techniques</a></li>
        </ul>
    </main>
    <footer>
        <p>&copy; 2024 Study Mania. All rights reserved.</p>
    </footer>
</body>

</html>
Leave a Comment