Untitled

mail@pastecode.io avatar
unknown
plain_text
19 days ago
1.0 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>Larry the Banana Man</title>
    <style>
        body {
            background-color: #fff68f; /* banana yellow */
            font-family: Arial, sans-serif;
            color: #333;
            text-align: center;
            margin: 0;
            padding: 20px;
        }
        h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }
        p {
            font-size: 1.2em;
            margin: 20px 0;
        }
        .skills {
            background-color: #ffe600; /* lighter banana yellow */
            border: 2px solid #ccc;
            border-radius: 10px;
            padding: 10px;
            display: inline-block;
        }
    </style>
</head>
<body>
    <h1>Larry the Banana Man</h1>
    <p>I like bananas and I eat them very fast!</p>
    <div class="skills">
        <h2>My Skills</h2>
        <p>Fast Banana Eating</p>
    </div>
</body>
</html>
Leave a Comment