Untitled

mail@pastecode.io avatar
unknown
plain_text
10 days ago
2.7 kB
1
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Raj - Graphic Designer</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        .container {
            width: 80%;
            margin: auto;
            overflow: hidden;
        }
        header {
            background: #333;
            color: #fff;
            padding-top: 30px;
            min-height: 70px;
            border-bottom: #bbb 1px solid;
            text-align: center;
        }
        header h1 {
            margin: 0;
        }
        nav {
            float: right;
            margin-top: 10px;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            padding: 0 15px;
        }
        .main-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 20px;
        }
        .bio {
            max-width: 600px;
            text-align: center;
        }
        footer {
            background: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
    </style>
</head>
<body>
    <header>
        <div class="container">
            <h1>Raj - Graphic Designer</h1>
            <nav>
                <a href="#">Home</a>
                <a href="#">Portfolio</a>
                <a href="#">Contact</a>
            </nav>
        </div>
    </header>

    <div class="container main-content">
        <section class="bio">
            <h2>About Me</h2>
            <p>Hello! I'm Raj, a passionate graphic designer with extensive experience in creating visually appealing and effective designs. My journey in graphic design has allowed me to work on diverse projects, honing my skills in various design techniques and software.</p>
            <p>With a keen eye for detail and a love for creativity, I strive to bring fresh perspectives and innovative solutions to every project I undertake. Whether it's branding, digital design, or print media, I am dedicated to delivering high-quality and impactful results.</p>
        </section>
    </div>

    <footer>
        <p>&copy; 2024 Raj - Graphic Designer. All rights reserved.</p>
    </footer>
</body>
</html>
Leave a Comment