Untitled

mail@pastecode.io avatar
unknown
plain_text
a month ago
2.8 kB
2
Indexable
Never
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Belen Pacheco - Pizza Maker & Student</title>
    <style>
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f4f4f4;
            color: #333;
            margin: 0;
            padding: 0;
        }
        header {
            background-color: #6c757d; /* Grayish color for a formal look */
            color: #fff;
            padding: 20px;
            text-align: center;
        }
        header h1 {
            margin: 0;
            font-family: 'Georgia', serif; /* Formal font for the header */
        }
        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
        }
        h2 {
            color: #4a4a4a;
        }
        .about, .portfolio, .contact {
            background-color: #ffffff;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 20px;
        }
        .portfolio img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }
        footer {
            background-color: #6c757d;
            color: #fff;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
        }
        .calligraphy {
            font-family: 'Brush Script MT', cursive; /* Fun calligraphy-like font */
            color: #9c27b0; /* Lavender purple */
        }
    </style>
</head>
<body>
    <header>
        <h1>Belen Pacheco</h1>
        <p>Pizza Maker & Part-time Student</p>
    </header>
    <div class="container">
        <section class="about">
            <h2>About Me</h2>
            <p>Hello! I'm Belen Pacheco, a passionate pizza maker and a part-time student. I have a love for calligraphy and technology, which I integrate into my daily life and work. Whether I'm crafting the perfect pizza or exploring new tech innovations, I always strive for excellence and creativity.</p>
        </section>
        <section class="portfolio">
            <h2>Portfolio</h2>
            <p>Here are some examples of my calligraphy work and technology projects:</p>
            <!-- Example images or projects can be added here -->
            <img src="calligraphy-sample.jpg" alt="Calligraphy Sample">
            <img src="tech-project-sample.jpg" alt="Tech Project Sample">
        </section>
        <section class="contact">
            <h2>Contact Me</h2>
            <p>You can reach me via email at <a href="mailto:belen.pacheco@example.com">belen.pacheco@example.com</a>.</p>
        </section>
    </div>
    <footer>
        <p>&copy; 2024 Belen Pacheco</p>
    </footer>
</body>
</html>
Leave a Comment