| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Eventbrite - Android Smartphones for Beginners</title> |
| <style> |
| * { |
| margin: 0; |
| padding: 0; |
| box-sizing: border-box; |
| } |
| |
| body { |
| font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif; |
| background-color: #f5f5f5; |
| color: #333; |
| line-height: 1.5; |
| } |
| |
| |
| header { |
| background: white; |
| padding: 15px 20px; |
| display: flex; |
| align-items: center; |
| gap: 15px; |
| border-bottom: 1px solid #e0e0e0; |
| position: sticky; |
| top: 0; |
| z-index: 100; |
| } |
| |
| .logo { |
| color: #f44336; |
| font-weight: bold; |
| font-size: 18px; |
| display: flex; |
| align-items: center; |
| gap: 8px; |
| min-width: 100px; |
| } |
| |
| .logo-icon { |
| width: 24px; |
| height: 24px; |
| background: #f44336; |
| border-radius: 4px; |
| transform: rotate(45deg); |
| } |
| |
| .search-container { |
| flex: 1; |
| display: flex; |
| align-items: center; |
| background: #f8f9fa; |
| border: 1px solid #e0e0e0; |
| border-radius: 24px; |
| padding: 10px 15px; |
| max-width: 500px; |
| } |
| |
| .search-input { |
| flex: 1; |
| border: none; |
| background: transparent; |
| font-size: 15px; |
| outline: none; |
| color: #333; |
| } |
| |
| .search-input::placeholder { |
| color: #999; |
| } |
| |
| .location-divider { |
| width: 1px; |
| height: 24px; |
| background: #ccc; |
| margin: 0 12px; |
| } |
| |
| .location-selector { |
| display: flex; |
| align-items: center; |
| gap: 6px; |
| font-size: 15px; |
| color: #666; |
| white-space: nowrap; |
| } |
| |
| .search-btn { |
| background: #f44336; |
| color: white; |
| border: none; |
| width: 36px; |
| height: 36px; |
| border-radius: 50%; |
| cursor: pointer; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| font-size: 16px; |
| margin-left: 10px; |
| } |
| |
| .nav-links { |
| display: flex; |
| gap: 25px; |
| align-items: center; |
| } |
| |
| .nav-links a { |
| text-decoration: none; |
| color: #333; |
| font-size: 14px; |
| } |
| |
| .nav-links a:hover { |
| color: #f44336; |
| } |
| |
| .nav-links .menu-icon { |
| font-size: 22px; |
| cursor: pointer; |
| display: none; |
| } |
| |
| |
| main { |
| max-width: 1200px; |
| margin: 0 auto; |
| padding: 20px; |
| } |
| |
| .event-header { |
| margin-bottom: 30px; |
| padding-top: 10px; |
| } |
| |
| .event-status { |
| background: #fff8e1; |
| color: #f57c00; |
| padding: 6px 12px; |
| border-radius: 16px; |
| font-size: 12px; |
| display: inline-block; |
| margin-bottom: 12px; |
| font-weight: 600; |
| border: 1px solid #f0e0a0; |
| } |
| |
| .event-title { |
| font-size: 28px; |
| color: #333; |
| margin-bottom: 10px; |
| font-weight: 700; |
| } |
| |
| .event-details-link { |
| color: #1976d2; |
| text-decoration: none; |
| font-size: 15px; |
| } |
| |
| .event-details-link:hover { |
| text-decoration: underline; |
| } |
| |
| .divider { |
| border: none; |
| border-top: 1px solid #e0e0e0; |
| margin: 25px 0; |
| } |
| |
| .organizer-section { |
| background: #f8f9fa; |
| padding: 20px; |
| border-radius: 12px; |
| margin-bottom: 35px; |
| } |
| |
| .organizer-title { |
| font-size: 17px; |
| color: #333; |
| margin-bottom: 18px; |
| } |
| |
| .organizer-card { |
| display: flex; |
| align-items: center; |
| gap: 18px; |
| } |
| |
| .organizer-logo { |
| width: 56px; |
| height: 56px; |
| border-radius: 50%; |
| object-fit: cover; |
| } |
| |
| .organizer-info { |
| flex: 1; |
| } |
| |
| .organizer-name { |
| font-weight: 600; |
| font-size: 17px; |
| } |
| |
| .organizer-followers { |
| color: #666; |
| font-size: 14px; |
| } |
| |
| .follow-btn { |
| background: #f44336; |
| color: white; |
| border: none; |
| padding: 12px 28px; |
| border-radius: 6px; |
| cursor: pointer; |
| font-size: 15px; |
| font-weight: 500; |
| } |
| |
| .follow-btn:hover { |
| background: #e43326; |
| } |
| |
| |
| .events-section { |
| margin-bottom: 50px; |
| } |
| |
| .events-title { |
| font-size: 22px; |
| color: #333; |
| margin-bottom: 25px; |
| font-weight: 700; |
| } |
| |
| .events-grid { |
| display: grid; |
| grid-template-columns: repeat(3, 1fr); |
| gap: 20px; |
| } |
| |
| .event-card { |
| background: white; |
| border-radius: 12px; |
| overflow: hidden; |
| box-shadow: 0 2px 8px rgba(0,0,0,0.08); |
| transition: box-shadow 0.2s; |
| } |
| |
| .event-card:hover { |
| box-shadow: 0 4px 16px rgba(0,0,0,0.12); |
| } |
| |
| .event-image-container { |
| position: relative; |
| width: 100%; |
| height: 160px; |
| } |
| |
| .event-image { |
| width: 100%; |
| height: 100%; |
| object-fit: cover; |
| } |
| |
| .event-actions { |
| position: absolute; |
| bottom: 8px; |
| right: 8px; |
| display: flex; |
| gap: 6px; |
| } |
| |
| .event-actions button { |
| background: white; |
| border: 1px solid #ddd; |
| border-radius: 50%; |
| width: 32px; |
| height: 32px; |
| cursor: pointer; |
| font-size: 16px; |
| color: #666; |
| display: flex; |
| align-items: center; |
| justify-content: center; |
| } |
| |
| .event-actions button:hover { |
| color: #f44336; |
| border-color: #f44336; |
| } |
| |
| .event-content { |
| padding: 16px; |
| } |
| |
| .event-promo-badge { |
| background: #e8eaf6; |
| color: #536dfe; |
| padding: 5px 10px; |
| border-radius: 5px; |
| font-size: 11px; |
| display: inline-block; |
| margin-bottom: 10px; |
| font-weight: 500; |
| } |
| |
| .event-card-title { |
| font-size: 17px; |
| color: #333; |
| margin-bottom: 8px; |
| font-weight: 600; |
| line-height: 1.4; |
| display: -webkit-box; |
| -webkit-line-clamp: 2; |
| -webkit-box-orient: vertical; |
| overflow: hidden; |
| } |
| |
| .event-date { |
| color: #f44336; |
| font-size: 14px; |
| margin-bottom: 6px; |
| font-weight: 600; |
| } |
| |
| .event-location { |
| color: #666; |
| font-size: 14px; |
| margin-bottom: 6px; |
| } |
| |
| .event-price { |
| color: #666; |
| font-size: 14px; |
| margin-bottom: 8px; |
| } |
| |
| .event-organizer { |
| color: #333; |
| font-size: 14px; |
| margin-bottom: 6px; |
| font-weight: 500; |
| } |
| |
| .event-tag { |
| color: #999; |
| font-size: 11px; |
| display: flex; |
| align-items: center; |
| gap: 5px; |
| } |
| |
| .event-tag-icon { |
| width: 10px; |
| height: 10px; |
| border: 1px solid #999; |
| border-radius: 50%; |
| display: inline-block; |
| } |
| |
| |
| footer { |
| background: #2a0a4a; |
| color: #ccc; |
| padding: 50px 20px 30px; |
| } |
| |
| .footer-content { |
| max-width: 1200px; |
| margin: 0 auto; |
| display: grid; |
| grid-template-columns: repeat(4, 1fr); |
| gap: 45px; |
| } |
| |
| .footer-column h4 { |
| color: white; |
| font-size: 15px; |
| margin-bottom: 18px; |
| font-weight: 600; |
| } |
| |
| .footer-column a { |
| color: #ccc; |
| text-decoration: none; |
| font-size: 13px; |
| display: block; |
| margin-bottom: 8px; |
| } |
| |
| .footer-column a:hover { |
| color: white; |
| } |
| |
| .footer-bottom { |
| text-align: center; |
| margin-top: 40px; |
| padding-top: 25px; |
| border-top: 1px solid #3a1a6a; |
| } |
| |
| .footer-bottom a { |
| color: #ccc; |
| text-decoration: none; |
| font-size: 13px; |
| margin: 0 12px; |
| } |
| |
| .footer-logo { |
| color: white; |
| font-size: 20px; |
| margin-top: 20px; |
| font-weight: 600; |
| letter-spacing: 1px; |
| } |
| |
| .copyright { |
| color: #ccc; |
| font-size: 12px; |
| margin-top: 10px; |
| } |
| |
| |
| @media (max-width: 1000px) { |
| header { |
| padding: 12px 15px; |
| } |
| |
| .search-container { |
| max-width: 400px; |
| } |
| |
| .nav-links { |
| gap: 20px; |
| } |
| } |
| |
| @media (max-width: 800px) { |
| .events-grid { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| |
| .footer-content { |
| grid-template-columns: repeat(2, 1fr); |
| } |
| |
| .event-title { |
| font-size: 24px; |
| } |
| } |
| |
| @media (max-width: 600px) { |
| header { |
| padding: 10px; |
| } |
| |
| .logo { |
| margin-right: auto; |
| } |
| |
| .nav-links { |
| gap: 12px; |
| font-size: 13px; |
| } |
| |
| .search-container { |
| order: 3; |
| width: 100%; |
| margin-top: 10px; |
| max-width: none; |
| } |
| |
| .events-grid { |
| grid-template-columns: 1fr; |
| } |
| |
| .footer-content { |
| grid-template-columns: 1fr; |
| gap: 30px; |
| } |
| |
| .organizer-card { |
| flex-wrap: wrap; |
| } |
| |
| .organizer-info { |
| flex: 1; |
| min-width: 140px; |
| } |
| |
| .follow-btn { |
| width: 100%; |
| } |
| } |
| |
| @media (max-width: 450px) { |
| .nav-links a:not(:last-child) { |
| display: none; |
| } |
| |
| .nav-links .menu-icon { |
| display: block; |
| } |
| |
| .event-card-title { |
| font-size: 15px; |
| } |
| |
| .event-image-container { |
| height: 140px; |
| } |
| } |
| </style> |
| </head> |
| <body> |
| <header> |
| <div class="logo"> |
| <span class="logo-icon"></span> |
| eventbrite |
| </div> |
| <div class="search-container"> |
| <input type="text" class="search-input" placeholder="Search events"> |
| <div class="location-divider"></div> |
| <div class="location-selector"> |
| <span>📍</span> |
| <span>Singapore</span> |
| </div> |
| <button class="search-btn">🔍</button> |
| </div> |
| <nav class="nav-links"> |
| <a href="#">Contact Sales</a> |
| <a href="#">Create Events</a> |
| <a href="#">Help Center ▾</a> |
| <a href="#">Find my tickets</a> |
| <a href="#">Log In</a> |
| <a href="#">Sign Up</a> |
| <span class="menu-icon">☰</span> |
| </nav> |
| </header> |
|
|
| <main> |
| <section class="event-header"> |
| <span class="event-status">📋 EVENT ENDED</span> |
| <h1 class="event-title">Android Smartphones for Beginners (T1-19)</h1> |
| <a href="#" class="event-details-link">View details</a> |
| </section> |
|
|
| <hr class="divider"> |
|
|
| <section class="organizer-section"> |
| <h2 class="organizer-title">Follow this organizer to stay informed on future events</h2> |
| <div class="organizer-card"> |
| <img src="images/desktop_crop_c968e1d8.jpg" alt="Organizer Logo" class="organizer-logo"> |
| <div class="organizer-info"> |
| <div class="organizer-name">By Loveland Public Library</div> |
| <div class="organizer-followers">283 followers</div> |
| </div> |
| <button class="follow-btn">Follow</button> |
| </div> |
| </section> |
|
|
| <section class="events-section"> |
| <h2 class="events-title">Other events you may like</h2> |
| <div class="events-grid"> |
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20260107-220056.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| <button>⋮</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <span class="event-promo-badge">Sales end soon</span> |
| <h3 class="event-card-title">Steady January : A Women's Healing Circle to slowly welcome 2026</h3> |
| <div class="event-date">Friday • 7:00 PM</div> |
| <div class="event-location">Peaceful Birth Company</div> |
| <div class="event-price">From $27.00</div> |
| <div class="event-organizer">The Motherhood Mentor:Somatic and holistic healing</div> |
| <div class="event-tag">Promoted <span class="event-tag-icon"></span></div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20230312-211907.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Yoga for Beginners / Upa Yoga</h3> |
| <div class="event-date">Saturday • 11:30 AM</div> |
| <div class="event-location">10 W 14th Ave</div> |
| <div class="event-price">Free</div> |
| <div class="event-organizer">Isha Foundation</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20251222-062554.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| <button>⋮</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Introduction to Dot Painting Class</h3> |
| <div class="event-date">Fri, Feb 13 • 6:00 PM</div> |
| <div class="event-location">2920 Ariel Dr</div> |
| <div class="event-price">From $35.98</div> |
| <div class="event-organizer">Lori Wilson - Instructor</div> |
| <div class="event-tag">Promoted <span class="event-tag-icon"></span></div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20251230-022931.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Painting From A Photo: Watercolors for Beginners</h3> |
| <div class="event-date">Fri, Jan 30 • 5:30 PM</div> |
| <div class="event-location">Restoration Covenant Church</div> |
| <div class="event-price">From $46.65</div> |
| <div class="event-organizer">Chrissy Sparks</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20250114-002207.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">3D Printing for Beginners w/ Luca</h3> |
| <div class="event-date">Today • 3:30 PM</div> |
| <div class="event-location">9110 W 44th Ave</div> |
| <div class="event-price">Free</div> |
| <div class="event-organizer">Clear Creek Makerspace</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20250128-213519.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">TIG Welding (GTAW) for Beginners</h3> |
| <div class="event-date">Saturday • 2:00 PM + 1 more</div> |
| <div class="event-location">9110 W 44th Ave</div> |
| <div class="event-price">From $65.87</div> |
| <div class="event-organizer">Clear Creek Makerspace</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20250124-203627.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Learn to Sew – Machine Sewing for Beginners (Drivers Ed)</h3> |
| <div class="event-date">Fri, Feb 6 • 5:00 PM</div> |
| <div class="event-location">Vacuums R Us & Sewing Too - Arvada Store</div> |
| <div class="event-price">From $60.00</div> |
| <div class="event-organizer">Vacuums R Us Events</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20250204-194141.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Laser Cutting for Beginners w/ Hugh</h3> |
| <div class="event-date">Fri, Jan 23 • 5:00 PM</div> |
| <div class="event-location">9110 W 44th Ave</div> |
| <div class="event-price">Free</div> |
| <div class="event-organizer">Clear Creek Makerspace</div> |
| </div> |
| </div> |
|
|
| <div class="event-card"> |
| <div class="event-image-container"> |
| <img src="images/20251218-185203.jpg" alt="Event" class="event-image"> |
| <div class="event-actions"> |
| <button>♡</button> |
| </div> |
| </div> |
| <div class="event-content"> |
| <h3 class="event-card-title">Oxygen Acetylene Welding (OAW) for Beginners</h3> |
| <div class="event-date">Wed, Feb 4 • 5:00 PM + 8 more</div> |
| <div class="event-location">9110 W 44th Ave</div> |
| <div class="event-price">From $49.87</div> |
| <div class="event-organizer">Clear Creek Makerspace</div> |
| </div> |
| </div> |
| </div> |
| </section> |
| </main> |
|
|
| <footer> |
| <div class="footer-content"> |
| <div class="footer-column"> |
| <h4>Use Eventbrite</h4> |
| <a href="#">Create Events</a> |
| <a href="#">Pricing</a> |
| <a href="#">Event Marketing Platform</a> |
| <a href="#">Eventbrite Mobile Ticket App</a> |
| <a href="#">Eventbrite Check-In App</a> |
| <a href="#">Eventbrite App Marketplace</a> |
| <a href="#">Event Registration Software</a> |
| <a href="#">Community Guidelines</a> |
| <a href="#">FAQs</a> |
| <a href="#">Sitemap</a> |
| </div> |
| <div class="footer-column"> |
| <h4>Plan Events</h4> |
| <a href="#">Sell Tickets Online</a> |
| <a href="#">Performing Arts Ticketing Software</a> |
| <a href="#">Sell Concert Tickets Online</a> |
| <a href="#">Event Payment System</a> |
| <a href="#">Solutions for Professional Services</a> |
| <a href="#">Event Management Software</a> |
| <a href="#">Halloween Party Planning</a> |
| <a href="#">Virtual Events Platform</a> |
| <a href="#">QR Codes for Event Check-In</a> |
| <a href="#">Post your event online</a> |
| </div> |
| <div class="footer-column"> |
| <h4>Find Events</h4> |
| <a href="#">Browse Loveland Events</a> |
| <a href="#">Get the Eventbrite App</a> |
| </div> |
| <div class="footer-column"> |
| <h4>Connect With Us</h4> |
| <a href="#">Report This Event</a> |
| <a href="#">Help Center</a> |
| <a href="#">Terms</a> |
| <a href="#">Privacy</a> |
| <a href="#">CA Privacy Notice</a> |
| <a href="#">Accessibility</a> |
| <a href="#">Community Guidelines</a> |
| </div> |
| </div> |
| <div class="footer-bottom"> |
| <a href="#">Manage Cookie Preferences</a> |
| <a href="#">Do Not Sell or Share My Personal Information</a> |
| <a href="#">Privacy</a> |
| <div class="footer-logo">eventbrite | ticketfly</div> |
| <div class="copyright">© 2026 Eventbrite</div> |
| </div> |
| </footer> |
| </body> |
| </html> |