Untitled

 avatar
unknown
plain_text
a year ago
2.2 kB
2
Indexable
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Your Name - Personal Website</title>
    <style>
        /* Basic styling */
        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #f0f0f0;
            color: #333;
            margin: 0;
            padding: 0;
        }
        .container {
            width: 80%;
            max-width: 800px;
            margin: auto;
            padding: 20px;
        }
        section {
            margin-bottom: 40px;
        }
        h1, h2, h3 {
            color: #204060; /* Dark blue */
        }
        h2 {
            border-bottom: 2px solid #cc3333; /* Red */
            padding-bottom: 5px;
            margin-bottom: 20px;
        }
        p {
            margin-bottom: 15px;
        }
        /* Navigation links */
        nav {
            background-color: #204060; /* Dark blue */
            text-align: center;
            padding: 10px 0;
        }
        nav a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-weight: bold;
        }
        nav a:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="container">
        <header>
            <h1>Your Name</h1>
            <p>Personal Branding | About Me, Portfolio, Contact</p>
        </header>
        
        <nav>
            <a href="#about">About Me</a>
            <a href="#portfolio">Portfolio</a>
            <a href="#contact">Contact</a>
        </nav>
        
        <section id="about">
            <h2>About Me</h2>
            <p>Write a brief introduction about yourself and your background.</p>
        </section>
        
        <section id="portfolio">
            <h2>Portfolio</h2>
            <p>Highlight your key projects or works. Include descriptions and links if applicable.</p>
        </section>
        
        <section id="contact">
            <h2>Contact</h2>
            <p>Provide contact information or a contact form for visitors to reach you.</p>
        </section>
    </div>
</body>
</html>
Editor is loading...
Leave a Comment