Untitled

 avatar
unknown
plain_text
a year ago
2.5 kB
5
Indexable
1.1.0<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>El Mal Producciones</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        header {
            background-color: #333;
            color: #fff;
            padding: 20px 0;
            text-align: center;
        }
        nav {
            display: flex;
            justify-content: center;
            background-color: #444;
            padding: 10px 0;
        }
        nav a {
            color: #fff;
            text-decoration: none;
            margin: 0 15px;
        }
        .container {
            width: 80%;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        footer {
            text-align: center;
            padding: 20px 0;
            background-color: #333;
            color: #fff;
            position: fixed;
            width: 100%;
            bottom: 0;
        }
    </style>
</head>
<body>

<header>
    <h1>El Mal Producciones</h1>
    <p>Just a normal guy who has been writing some hip hop lyrics</p>
</header>

<nav>
    <a href="#about">About Me</a>
    <a href="#portfolio">Portfolio</a>
    <a href="#contact">Contact</a>
</nav>

<div class="container">
    <section id="about">
        <h2>About Me</h2>
        <p>Hi there! I'm a hip hop enthusiast and lyricist. My passion for writing lyrics started when I was young, and it has grown into a significant part of my life. I love creating rhymes that tell stories and express emotions. Welcome to my page where I share my journey and works.</p>
    </section>

    <section id="portfolio">
        <h2>Portfolio</h2>
        <p>Here are some of my recent works:</p>
        <ul>
            <li>Track 1: "Journey Through the Streets"</li>
            <li>Track 2: "Finding My Destiny"</li>
            <li>Track 3: "Echoes of the Past"</li>
        </ul>
    </section>

    <section id="contact">
        <h2>Contact</h2>
        <p>Feel free to reach out to me for collaborations or any inquiries.</p>
        <p>Email: <a href="mailto:your.email@example.com">your.email@example.com</a></p>
    </section>
</div>

<footer>
    <p>&copy; 2024 El Mal Producciones</p>
</footer>

</body>
</html>
Editor is loading...
Leave a Comment