Untitled

 avatar
unknown
plain_text
a year ago
1.7 kB
3
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Akshat's Personal Webpage</title>
    <style>
        /* CSS styles */
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f3f3f3;
            color: #333;
        }
        header {
            background-color: #007bff;
            color: #fff;
            text-align: center;
            padding: 20px 0;
        }
        h1 {
            margin-top: 0;
        }
        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 0 20px;
        }
        p {
            line-height: 1.6;
        }
        footer {
            text-align: center;
            background-color: #333;
            color: #fff;
            padding: 10px 0;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Akshat's Personal Webpage</h1>
    </header>
    <div class="container">
        <section>
            <h2>About Me</h2>
            <p>Hello! My name is Akshat and this is my personal webpage. I am passionate about [insert main theme or focus here]. Stay tuned to explore more!</p>
        </section>
        <section>
            <h2>Contact Me</h2>
            <p>Feel free to reach out to me via email at <a href="mailto:your-email@example.com">your-email@example.com</a>.</p>
        </section>
    </div>
    <footer>
        <p>&copy; 2024 Akshat. All rights reserved.</p>
    </footer>
</body>
</html>
Editor is loading...
Leave a Comment