Free !!install!! — Guild Website Template

<nav class="navbar"> <div class="container nav-container"> <div class="logo"> <i class="fas fa-dragon logo-icon"></i> <h1>ÆTHELGARD</h1> </div> <ul class="nav-links"> <li><a href="#" class="active">Home</a></li> <li><a href="#about">Lore</a></li> <li><a href="#roster">Roster</a></li> <li><a href="#progress">Raids</a></li> <li><a href="#join">Join</a></li> </ul> <button class="btn-outline-light" id="discordBtn"><i class="fab fa-discord"></i> Discord</button> </div> </nav>

<!-- Roster / Members --> <section id="roster"> <div class="container"> <div class="section-title">🏅 Vanguard Council</div> <div class="section-sub">Meet the champions leading the charge</div> <div class="members-grid" id="membersContainer"> <!-- dynamic but also static default with JS? we fill both --> </div> </div> </section> guild website template free

/* hero section */ .hero padding: 80px 0 100px; background: radial-gradient(circle at 10% 30%, rgba(79,70,229,0.15), transparent 70%); .hero-grid display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; .hero-content flex: 1; .hero-badge background: rgba(79,70,229,0.2); display: inline-block; padding: 6px 16px; border-radius: 40px; font-size: 0.85rem; font-weight: 600; color: #a5b4fc; margin-bottom: 20px; border: 1px solid rgba(79,70,229,0.5); .hero-content h2 font-size: 3.4rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; .hero-highlight color: #818cf8; border-bottom: 3px solid #4f46e5; display: inline-block; .hero-content p font-size: 1.2rem; color: #cbd5e1; max-width: 550px; margin-bottom: 32px; .hero-buttons display: flex; gap: 16px; flex-wrap: wrap; .btn-primary background: #4f46e5; padding: 12px 28px; border-radius: 40px; font-weight: 700; border: none; color: white; cursor: pointer; transition: 0.2s; font-size: 1rem; .btn-primary:hover background: #6366f1; transform: translateY(-2px); box-shadow: 0 10px 20px -5px #4f46e5; .hero-image flex: 1; text-align: center; .hero-image i font-size: 220px; color: #2d2f48; filter: drop-shadow(0 0 12px #4f46e5); opacity: 0.8; div class="container nav-container"&gt

// add some dynamic loading animation for progress bars function animateProgressBars() const fills = document.querySelectorAll('.progress-fill'); fills.forEach(fill => const width = fill.style.width; fill.style.width = '0%'; setTimeout(() => fill.style.transition = 'width 1s ease-out'; fill.style.width = width; , 200); ); // initial load renderMembers(); animateProgressBars(); i class="fas fa-dragon logo-icon"&gt

/* recruitment */ .recruit-box background: linear-gradient(145deg, #0f172a, #0a0f1a); border-radius: 40px; padding: 48px 32px; text-align: center; border: 1px solid #334155; .recruit-box h3 font-size: 2rem; margin-bottom: 16px; .recruit-tags display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 28px 0; .tag background: #1e293b; padding: 8px 18px; border-radius: 40px; font-size: 0.9rem; font-weight: 500; .btn-secondary background: transparent; border: 2px solid #818cf8; padding: 12px 32px; border-radius: 40px; font-weight: bold; color: white; cursor: pointer; transition: 0.2s; .btn-secondary:hover background: #818cf8; color: #0a0c10;

/* header / navbar */ .navbar position: sticky; top: 0; background: rgba(10, 12, 16, 0.92); backdrop-filter: blur(12px); z-index: 100; border-bottom: 1px solid rgba(79, 70, 229, 0.3); padding: 16px 0; .nav-container display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; .logo display: flex; align-items: center; gap: 12px; .logo-icon font-size: 32px; color: #818cf8; .logo h1 font-size: 1.8rem; font-weight: 800; letter-spacing: -0.5px; background: linear-gradient(135deg, #c7d2fe, #a5b4fc); background-clip: text; -webkit-background-clip: text; color: transparent; .nav-links display: flex; gap: 28px; list-style: none; .nav-links a text-decoration: none; color: #e2e8f0; font-weight: 500; transition: 0.2s; font-size: 1rem; .nav-links a:hover, .nav-links a.active color: #a5b4fc; border-bottom: 2px solid #4f46e5; padding-bottom: 4px; .btn-outline-light border: 1px solid #4f46e5; background: transparent; padding: 8px 20px; border-radius: 40px; color: #e2e8f0; font-weight: 600; cursor: pointer; transition: 0.2s; .btn-outline-light:hover background: #4f46e5; color: white; box-shadow: 0 4px 14px rgba(79, 70, 229, 0.4);