document structure (titles)

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>ollie and devins site</title>
click for an embed code example <iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> </iframe>

css styles (color and backgrounds)

<style> body { margin: 0; height: 100vh; display: flex; justify-content: center; align-items: center; background: linear-gradient(135deg, #1e1e2f, #3a3a5c); font-family: "Poppins", sans-serif; color: white; } .card { width: 350px; padding: 30px; border-radius: 20px; background: rgba(255, 255, 255, 0.08); backdrop-filter: blur(12px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); transition: transform 0.4s ease, box-shadow 0.4s ease; } .card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 15px 40px rgba(0,0,0,0.35); } h1 { margin: 0 0 10px; font-size: 28px; letter-spacing: 1px; } p { opacity: 0.8; line-height: 1.6; } .btn { margin-top: 20px; display: inline-block; padding: 12px 20px; border-radius: 10px; background: #6c63ff; color: white; text-decoration: none; font-weight: 600; transition: background 0.3s ease; } .btn:hover { background: #8a85ff; } select { width: 100%; margin-top: 20px; padding: 12px; border-radius: 10px; background: rgba(255, 255, 255, 0.1); color: white; border: none; outline: none; font-size: 15px; backdrop-filter: blur(8px); cursor: pointer; transition: background 0.3s ease; } select:hover { background: rgba(255, 255, 255, 0.18); } option { background: #1e1e2f; color: white; } .gif { width: 0.01%; border-radius: 12px; margin-top: 20px; box-shadow: 0 5px 20px rgba(0,0,0,0.3); } details { margin-top: 20px; background: rgba(255, 255, 255, 0.1); padding: 10px; border-radius: 10px; cursor: pointer; } code { display: block; white-space: pre-wrap; background: rgba(0,0,0,0.3); padding: 10px; border-radius: 8px; margin-top: 10px; font-size: 12px; } </style>

body content (text and pics and dropdowns)

<body> <div class="card"> <h1>ollie and devins super tuff website</h1> <p>ts is lowk tuff</p> <a href="#" class="btn">this is a button</a> <select> <option>click me</option> <option>i am a</option> <option>dropdown</option> <option>menu</option> </select> <a href="code.html" class="btn" style="background:#ff5f5f;margin-top:25px;"> view full page code </a> <details> <summary>click for an embed code example</summary> <code> <iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> </iframe> </code> </details> </div> </body> </html>