<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>Artist Portfolio</title> <style> body { margin: 0; font-family: Arial, sans-serif; color: #333; background-color: #fafafa; } nav { background-color: #fff; border-bottom: 1px solid #ddd; padding: 1rem 2rem; position: sticky; top: 0; z-index: 1000; display: flex; justify-content: space-between; align-items: center; } nav a { text-decoration: none; color: #333; margin-left: 1.5rem; font-weight: 500; } nav a:hover { color: #007acc; } .nav-left { font-weight: bold; font-size: 1.25rem; } .hero { display: flex; flex-direction: column; align-items: center; padding: 3rem 1rem; max-width: 900px; margin: 0 auto; background-color: #fff; } .hero img { width: 100%; max-width: 600px; height: auto; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-bottom: 2rem; } .hero-text { max-width: 700px; text-align: center; } .hero-text h1 { font-size: 2.5rem; margin-bottom: 1rem; } .hero-text p { font-size: 1.125rem; line-height: 1.6; color: #555; } @media (min-width: 768px) { .hero { flex-direction: row; gap: 3rem; padding: 5rem 2rem; } .hero img, .hero-text { flex: 1; max-width: none; text-align: left; } .hero-text h1 { font-size: 3rem; } .hero-text p { font-size: 1.25rem; } } </style> </head> <body> <nav> <div class="nav-left">Darcy Edwin</div> <div class="nav-right"> <a href="#portfolio">Portfolio</a> <a href="#about">About</a> <a href="#contact">Contact</a> </div> </nav> <section class="hero" id="home"> <img src="path/to/your-artwork.jpg" alt="Featured Artwork by Darcy Edwin" /> <div class="hero-text"> <h1>Darcy Edwin</h1> <p> Darcy is an artist specializing in printmaking, painting and mixed media. </p> </div> </section> </body> </html>