<!DOCTYPE html><html lang="no"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Trøndertreffet 2026</title> <style> * { margin: 0; padding: 0; box-sizing: border-box; } body { font-family: Arial, sans-serif; background: #000; color: #fff; line-height: 1.6; } .hero { position: relative; min-height: 100vh; background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('/mnt/data/0.png') center/cover no-repeat; padding: 30px 60px; } nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 60px; } nav h1 { color: #2e7df6; font-size: 2rem; } nav p { color: #ff8c00; font-weight: bold; } nav ul { display: flex; list-style: none; gap: 30px; } nav a { color: white; text-decoration: none; font-weight: bold; } .hero-content { max-width: 700px; margin-top: 50px; } .hero-content h2 { font-size: 5rem; text-transform: uppercase; line-height: 1; } .hero-content h2 span { color: #2e7df6; } .hero-content h3 { font-size: 2.5rem; color: #ff8c00; margin: 20px 0; } .date-box { display: inline-block; border: 2px solid #2e7df6; padding: 20px; margin: 20px 0; background: rgba(0,0,0,0.5); } .date-box .big { font-size: 3rem; font-weight: bold; } .date-box .blue { color: #2e7df6; font-size: 2rem; font-weight: bold; } .hero ul { margin: 20px 0; list-style: none; } .hero ul li { margin: 10px 0; font-size: 1.2rem; } .buttons { margin-top: 30px; } .btn { padding: 15px 30px; border: none; cursor: pointer; font-size: 1rem; margin-right: 15px; border-radius: 8px; font-weight: bold; } .btn-orange { background: #ff8c00; color: white; } .btn-blue { background: transparent; color: white; border: 2px solid #2e7df6; } .program { padding: 60px; background: #111; } .program h2 { font-size: 3rem; color: #ff8c00; margin-bottom: 30px; } .cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; } .card { background: #1a1a1a; padding: 20px; border-radius: 12px; } .card h3 { color: #ff8c00; margin-bottom: 15px; } footer { background: linear-gradient(90deg, #2e7df6, #ff8c00); text-align: center; padding: 50px 20px; } footer h2 { font-size: 2.5rem; margin-bottom: 10px; } </style> </head> <body> <section class="hero"> <nav> <div> <h1>Trøndertreffet</h1> <p>Opel & Volvo</p> </div> <ul> <li><a href="#">Hjem</a></li> <li><a href="#program">Program</a></li> <li><a href="#kontakt">Kontakt</a></li> </ul> </nav><div class="hero-content"> <h2>Trønder<span>treffet</span></h2> <h3>Opel & Volvo</h3> <div class="date-box"> <div class="big">10–12</div> <div class="blue">Juli 2026</div> <p>Et biltreff for entusiaster, av entusiaster!</p> </div> <ul> <li>✓ Alle Opel & Volvo er velkommen</li> <li>✓ Show & Shine</li> <li>✓ Kjøring & aktiviteter</li> <li>✓ Sosialt samvær</li> <li>✓ Camping på området</li> </ul> <div class="buttons"> <button class="btn btn-orange">Påmelding</button> <button class="btn btn-blue">Les mer</button> </div> </div> </section> <section class="program" id="program"> <h2>Program</h2> <div class="cards"> <div class="card"> <h3>Fredag 10. juli</h3> <p>Innsjekk & camp</p> <p>Åpen grill</p> <p>Sosialt samvær</p> </div> <div class="card"> <h3>Lørdag 11. juli</h3> <p>Show & Shine</p> <p>Kjøreaktiviteter</p> <p>Premieutdeling</p> </div> <div class="card"> <h3>Søndag 12. juli</h3> <p>Cruising</p> <p>Avslutning</p> <p>Takk for i år!</p> </div> </div> </section> <footer id="kontakt"> <h2>Kjør hardt. Vis respekt. Ha det gøy!</h2> <p>Velkommen til Trøndertreffet 2026</p> </footer> <script> document.querySelector('.btn-orange').addEventListener('click', function() { alert('Påmelding åpner snart!'); }); </script></body> </html>