Untitled

 avatar
unknown
plain_text
a year ago
3.0 kB
2
Indexable
Great, thank you for the information! Here's a basic structure for your personal webpage. I'll provide it all in a single HTML file:

```html
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Umang Kumar - Social Media Strategist</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        header {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        header h1 {
            margin: 0;
        }
        nav {
            display: flex;
            justify-content: center;
            background-color: #444;
        }
        nav a {
            color: #fff;
            padding: 14px 20px;
            text-decoration: none;
            text-align: center;
        }
        nav a:hover {
            background-color: #555;
        }
        section {
            padding: 20px;
            margin: 10px;
            background-color: #fff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .container {
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px 0;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
    </style>
</head>
<body>
    <header>
        <h1>Umang Kumar</h1>
        <p>A Social Media Strategist</p>
    </header>
    <nav>
        <a href="#about">About Me</a>
        <a href="#clients">Clients</a>
        <a href="#lead-magnet">Lead Magnet</a>
    </nav>
    <div class="container">
        <section id="about">
            <h2>About Me</h2>
            <p>I like content creation, books, and movies. I help people and businesses become brands. I have 4 years of experience in social media strategy and brand building.</p>
        </section>
        <section id="clients">
            <h2>Clients</h2>
            <p>Here, you can showcase your clients or the brands you've worked with. Include testimonials or case studies if available.</p>
        </section>
        <section id="lead-magnet">
            <h2>Lead Magnet</h2>
            <p>Offer something valuable to your visitors in exchange for their contact information. This could be an ebook, a free consultation, or a downloadable guide.</p>
        </section>
    </div>
    <footer>
        <p>&copy; 2024 Umang Kumar. All rights reserved.</p>
    </footer>
</body>
</html>
```

You can customize the content further or add more sections if needed. Let me know if you have any other preferences or additional details!
Editor is loading...
Leave a Comment