← back to Graphics Loop

iterations/phillipe-romano-hero-20260503-114223/iter_2/graphic.html

60 lines

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Phillipe Romano Hero Banner</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
        }
        .hero-banner {
            width: 100%;
            max-width: 1024px;
            background-color: #fff;
            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .hero-banner img {
            width: 100%;
            height: auto;
            display: block;
        }
        .content {
            padding: 24px;
        }
        .wordmark {
            font-family: 'Times New Roman', Times, serif;
            font-size: 36px;
            color: #5a796b;
        }
        .tagline {
            font-family: Arial, sans-serif;
            font-size: 24px;
            color: #5a796b;
            margin-top: 12px;
        }
    </style>
</head>
<body>
    <div class="hero-banner">
        <svg viewBox="0 0 1024 600" preserveAspectRatio="xMidYMid meet">
            <rect x="0" y="0" width="1024" height="600" fill="#f5f5f5"/>
            <path d="M0,0 L1024,0 C984,32 960,64 960,64 C948,72 936,80 936,80 C912,96 896,112 896,112 C856,144 816,176 816,176 L0,176 C0,208 32,240 32,240 C16,272 0,304 0,304 L0,560 C32,592 72,624 72,624 C112,688 152,752 152,752 L1024,752 C1056,712 1080,632 1080,560 L1080,240 C1080,168 1048,96 1024,64 L1024,0 Z" fill="#eaeaea"/>
            <rect x="72" y="320" width="500" height="100" fill="#dcdcdc"/>
        </svg>
        <div class="content">
            <h1 class="wordmark">PHILLIPE ROMANO</h1>
            <p class="tagline">High-Performance Surfaces, Quietly Luxurious</p>
        </div>
    </div>
</body>
</html>