← back to Graphics Loop
iterations/phillipe-romano-hero-20260503-114223/iter_1/graphic.html
67 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, html {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
display: flex;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
font-family: 'Times New Roman', serif;
}
.banner {
max-width: 1024px;
width: 100%;
height: 600px;
overflow: hidden;
position: relative;
}
.content {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
font-size: 3rem;
color: #2c3e50;
}
.tagline {
font-size: 1.5rem;
margin-top: 20px;
color: #7f8c8d;
}
svg {
width: 40%;
height: auto;
position: absolute;
top: 30px;
left: 60px;
}
</style>
</head>
<body>
<div class="banner">
<svg viewBox="0 0 1024 600" xmlns="http://www.w3.org/2000/svg">
<rect width="1024" height="600" fill="#f5f5f5"/>
<rect x="32" y="200" width="960" height="200" fill="#d3d3d3"/>
<rect x="32" y="400" width="960" height="200" fill="#c7c7c7"/>
</svg>
<div class="content">
<h1>PHILLIPE ROMANO</h1>
<p class="tagline">High-Performance Surfaces, Quietly Luxurious</p>
</div>
</div>
</body>
</html>