Sunday, October 13, 2024

Got it! Here’s a summary of your webpage:

1. Name: Elangovan


2. Interests: Pencil drawing


3. Contact: 8124874387



Now, I’ll create a simple webpage for you. Here’s the complete HTML code:

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Elangovan's Personal Page</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 20px;
            background-color: #f4f4f4;
        }
        header {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: white;
        }
        main {
            margin-top: 20px;
        }
        .contact {
            margin-top: 20px;
        }
        footer {
            text-align: center;
            margin-top: 40px;
            font-size: 0.8em;
        }
    </style>
</head>
<body>
    <header>
        <h1>Welcome to Elangovan's Page</h1>
    </header>
    <main>
        <h2>About Me</h2>
        <p>I am passionate about pencil drawing, creating intricate and expressive artworks.</p>
        
        <h2>Contact Me</h2>
        <p>If you'd like to get in touch, feel free to reach out at: <strong>8124874387</strong></p>
    </main>
    <footer>
        <p>&copy; 2024 Elangovan</p>
    </footer>
</body>
</html>



Got it! Here’s a summary of your webpage: 1. Name: Elangovan 2. Interests: Pencil drawing 3. Contact: 8124874387 Now, I’ll create a simple w...