| | <!DOCTYPE html> |
| | <html lang="en"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>Nosound - Atmospheric Progressive Rock</title> |
| | <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css"> |
| | <style> |
| | |
| | :root { |
| | --primary: #6c5b7b; |
| | --secondary: #c06c84; |
| | --dark: #2a1b3d; |
| | --light: #f8f1ff; |
| | --accent: #e94560; |
| | --text: #d9d9d9; |
| | } |
| | |
| | * { |
| | margin: 0; |
| | padding: 0; |
| | box-sizing: border-box; |
| | font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; |
| | } |
| | |
| | body { |
| | background-color: var(--dark); |
| | color: var(--text); |
| | overflow-x: hidden; |
| | line-height: 1.6; |
| | } |
| | |
| | |
| | h1, h2, h3 { |
| | font-weight: 300; |
| | margin-bottom: 1rem; |
| | color: var(--light); |
| | } |
| | |
| | h1 { |
| | font-size: 3.5rem; |
| | letter-spacing: 3px; |
| | } |
| | |
| | h2 { |
| | font-size: 2.5rem; |
| | letter-spacing: 2px; |
| | } |
| | |
| | h3 { |
| | font-size: 1.8rem; |
| | } |
| | |
| | p { |
| | margin-bottom: 1.5rem; |
| | } |
| | |
| | a { |
| | color: var(--secondary); |
| | text-decoration: none; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | a:hover { |
| | color: var(--accent); |
| | } |
| | |
| | |
| | header { |
| | position: relative; |
| | height: 100vh; |
| | display: flex; |
| | flex-direction: column; |
| | justify-content: center; |
| | align-items: center; |
| | text-align: center; |
| | padding: 2rem; |
| | background: linear-gradient(rgba(42, 27, 61, 0.7), rgba(42, 27, 61, 0.9)), url('https://source.unsplash.com/random/1920x1080/?concert,dark') no-repeat center center/cover; |
| | overflow: hidden; |
| | } |
| | |
| | .logo { |
| | width: 200px; |
| | margin-bottom: 2rem; |
| | filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5)); |
| | animation: pulse 4s infinite; |
| | } |
| | |
| | @keyframes pulse { |
| | 0% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5)); } |
| | 50% { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(233, 69, 96, 0.8)); } |
| | 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(233, 69, 96, 0.5)); } |
| | } |
| | |
| | .header-content { |
| | max-width: 800px; |
| | z-index: 2; |
| | } |
| | |
| | .scrolldown { |
| | position: absolute; |
| | bottom: 30px; |
| | left: 50%; |
| | transform: translateX(-50%); |
| | font-size: 1.5rem; |
| | animation: bounce 2s infinite; |
| | color: var(--light); |
| | } |
| | |
| | @keyframes bounce { |
| | 0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); } |
| | 40% { transform: translateY(-20px) translateX(-50%); } |
| | 60% { transform: translateY(-10px) translateX(-50%); } |
| | } |
| | |
| | |
| | nav { |
| | position: fixed; |
| | top: 0; |
| | left: 0; |
| | width: 100%; |
| | padding: 1.5rem 2rem; |
| | display: flex; |
| | justify-content: space-between; |
| | align-items: center; |
| | background-color: rgba(42, 27, 61, 0.9); |
| | z-index: 1000; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | nav.scrolled { |
| | background-color: rgba(42, 27, 61, 0.98); |
| | box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3); |
| | padding: 1rem 2rem; |
| | } |
| | |
| | .nav-logo { |
| | font-size: 1.8rem; |
| | font-weight: 300; |
| | letter-spacing: 2px; |
| | color: var(--light); |
| | } |
| | |
| | .nav-links { |
| | display: flex; |
| | list-style: none; |
| | } |
| | |
| | .nav-links li { |
| | margin-left: 2rem; |
| | } |
| | |
| | .nav-links a { |
| | color: var(--text); |
| | text-transform: uppercase; |
| | letter-spacing: 1px; |
| | font-size: 0.9rem; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .nav-links a:hover { |
| | color: var(--accent); |
| | } |
| | |
| | .hamburger { |
| | display: none; |
| | cursor: pointer; |
| | } |
| | |
| | |
| | section { |
| | padding: 5rem 2rem; |
| | position: relative; |
| | } |
| | |
| | .section-title { |
| | text-align: center; |
| | margin-bottom: 3rem; |
| | position: relative; |
| | } |
| | |
| | .section-title:after { |
| | content: ''; |
| | position: absolute; |
| | bottom: -10px; |
| | left: 50%; |
| | transform: translateX(-50%); |
| | width: 80px; |
| | height: 2px; |
| | background: linear-gradient(90deg, var(--primary), var(--accent)); |
| | } |
| | |
| | .container { |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | } |
| | |
| | |
| | .about { |
| | background-color: var(--dark); |
| | } |
| | |
| | .about-content { |
| | display: flex; |
| | flex-wrap: wrap; |
| | justify-content: space-between; |
| | align-items: center; |
| | gap: 3rem; |
| | } |
| | |
| | .about-text { |
| | flex: 1; |
| | min-width: 300px; |
| | } |
| | |
| | .about-image { |
| | flex: 1; |
| | min-width: 300px; |
| | position: relative; |
| | border-radius: 5px; |
| | overflow: hidden; |
| | box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); |
| | } |
| | |
| | .about-image img { |
| | width: 100%; |
| | height: auto; |
| | display: block; |
| | transition: transform 0.5s ease; |
| | } |
| | |
| | .about-image:hover img { |
| | transform: scale(1.05); |
| | } |
| | |
| | .about-image:before { |
| | content: ''; |
| | position: absolute; |
| | top: 0; |
| | left: 0; |
| | width: 100%; |
| | height: 100%; |
| | background: linear-gradient(135deg, rgba(108, 91, 123, 0.3), rgba(192, 108, 132, 0.3)); |
| | z-index: 1; |
| | } |
| | |
| | |
| | .music { |
| | background: linear-gradient(var(--dark), #1a1125); |
| | position: relative; |
| | overflow: hidden; |
| | } |
| | |
| | .music:before { |
| | content: ''; |
| | position: absolute; |
| | top: 0; |
| | left: 0; |
| | width: 100%; |
| | height: 100%; |
| | background: url('https://source.unsplash.com/random/1920x1080/?music,vinyl') no-repeat center center/cover; |
| | opacity: 0.1; |
| | z-index: 0; |
| | } |
| | |
| | .music-content { |
| | position: relative; |
| | z-index: 1; |
| | } |
| | |
| | .albums { |
| | display: grid; |
| | grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); |
| | gap: 2rem; |
| | } |
| | |
| | .album { |
| | background-color: rgba(42, 27, 61, 0.7); |
| | border-radius: 5px; |
| | overflow: hidden; |
| | box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .album:hover { |
| | transform: translateY(-10px); |
| | box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3); |
| | } |
| | |
| | .album-image { |
| | width: 100%; |
| | height: 250px; |
| | overflow: hidden; |
| | } |
| | |
| | .album-image img { |
| | width: 100%; |
| | height: 100%; |
| | object-fit: cover; |
| | transition: transform 0.5s ease; |
| | } |
| | |
| | .album:hover .album-image img { |
| | transform: scale(1.1); |
| | } |
| | |
| | .album-info { |
| | padding: 1.5rem; |
| | } |
| | |
| | .album-title { |
| | font-size: 1.2rem; |
| | margin-bottom: 0.5rem; |
| | color: var(--light); |
| | } |
| | |
| | .album-year { |
| | font-size: 0.9rem; |
| | color: var(--secondary); |
| | margin-bottom: 1rem; |
| | } |
| | |
| | .album-links { |
| | display: flex; |
| | justify-content: space-between; |
| | } |
| | |
| | .album-links a { |
| | padding: 0.5rem 1rem; |
| | border-radius: 3px; |
| | font-size: 0.9rem; |
| | text-transform: uppercase; |
| | letter-spacing: 1px; |
| | } |
| | |
| | .buy-btn { |
| | background-color: var(--accent); |
| | color: var(--light); |
| | } |
| | |
| | .buy-btn:hover { |
| | background-color: var(--secondary); |
| | color: var(--light); |
| | } |
| | |
| | .listen-btn { |
| | border: 1px solid var(--secondary); |
| | } |
| | |
| | |
| | .tour { |
| | background-color: #1a1125; |
| | } |
| | |
| | .dates { |
| | max-width: 800px; |
| | margin: 0 auto; |
| | } |
| | |
| | .date { |
| | background-color: rgba(42, 27, 61, 0.7); |
| | padding: 1.5rem; |
| | margin-bottom: 1.5rem; |
| | border-radius: 5px; |
| | display: flex; |
| | flex-wrap: wrap; |
| | justify-content: space-between; |
| | align-items: center; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .date:hover { |
| | background-color: rgba(42, 27, 61, 0.9); |
| | transform: translateX(10px); |
| | } |
| | |
| | .date-info { |
| | flex: 1; |
| | min-width: 200px; |
| | } |
| | |
| | .date-location { |
| | font-size: 1.2rem; |
| | color: var(--light); |
| | } |
| | |
| | .date-venue { |
| | color: var(--secondary); |
| | font-size: 0.9rem; |
| | } |
| | |
| | .date-details { |
| | flex: 1; |
| | min-width: 200px; |
| | text-align: right; |
| | } |
| | |
| | .date-day { |
| | font-size: 1.1rem; |
| | margin-bottom: 0.5rem; |
| | color: var(--light); |
| | } |
| | |
| | .tickets-btn { |
| | display: inline-block; |
| | padding: 0.5rem 1.5rem; |
| | background-color: var(--primary); |
| | color: var(--light); |
| | border-radius: 3px; |
| | font-size: 0.9rem; |
| | text-transform: uppercase; |
| | letter-spacing: 1px; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .tickets-btn:hover { |
| | background-color: var(--accent); |
| | } |
| | |
| | .no-dates { |
| | text-align: center; |
| | font-style: italic; |
| | color: var(--secondary); |
| | } |
| | |
| | |
| | .contact { |
| | background: linear-gradient(#1a1125, var(--dark)); |
| | } |
| | |
| | .contact-content { |
| | display: flex; |
| | flex-wrap: wrap; |
| | gap: 3rem; |
| | } |
| | |
| | .contact-info { |
| | flex: 1; |
| | min-width: 300px; |
| | } |
| | |
| | .contact-info h3 { |
| | margin-bottom: 1.5rem; |
| | } |
| | |
| | .contact-details { |
| | margin-bottom: 2rem; |
| | } |
| | |
| | .contact-detail { |
| | display: flex; |
| | align-items: center; |
| | margin-bottom: 1rem; |
| | } |
| | |
| | .contact-detail i { |
| | width: 30px; |
| | color: var(--secondary); |
| | font-size: 1.2rem; |
| | } |
| | |
| | .social-links { |
| | display: flex; |
| | gap: 1rem; |
| | } |
| | |
| | .social-link { |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | width: 40px; |
| | height: 40px; |
| | border-radius: 50%; |
| | background-color: rgba(108, 91, 123, 0.3); |
| | color: var(--light); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .social-link:hover { |
| | background-color: var(--accent); |
| | transform: translateY(-5px); |
| | } |
| | |
| | .contact-form { |
| | flex: 1; |
| | min-width: 300px; |
| | } |
| | |
| | .form-group { |
| | margin-bottom: 1.5rem; |
| | } |
| | |
| | label { |
| | display: block; |
| | margin-bottom: 0.5rem; |
| | color: var(--light); |
| | } |
| | |
| | input, |
| | textarea { |
| | width: 100%; |
| | padding: 0.8rem; |
| | background-color: rgba(108, 91, 123, 0.3); |
| | border: 1px solid rgba(108, 91, 123, 0.5); |
| | border-radius: 3px; |
| | color: var(--light); |
| | transition: all 0.3s ease; |
| | } |
| | |
| | input:focus, |
| | textarea:focus { |
| | outline: none; |
| | border-color: var(--accent); |
| | background-color: rgba(108, 91, 123, 0.5); |
| | } |
| | |
| | textarea { |
| | height: 150px; |
| | resize: vertical; |
| | } |
| | |
| | .submit-btn { |
| | background-color: var(--accent); |
| | color: var(--light); |
| | padding: 0.8rem 2rem; |
| | border: none; |
| | border-radius: 3px; |
| | cursor: pointer; |
| | font-size: 1rem; |
| | text-transform: uppercase; |
| | letter-spacing: 1px; |
| | transition: all 0.3s ease; |
| | } |
| | |
| | .submit-btn:hover { |
| | background-color: var(--secondary); |
| | } |
| | |
| | |
| | footer { |
| | background-color: var(--dark); |
| | padding: 3rem 2rem; |
| | text-align: center; |
| | } |
| | |
| | .footer-content { |
| | max-width: 1200px; |
| | margin: 0 auto; |
| | } |
| | |
| | .footer-links { |
| | display: flex; |
| | justify-content: center; |
| | flex-wrap: wrap; |
| | gap: 2rem; |
| | margin-bottom: 2rem; |
| | } |
| | |
| | .footer-links a { |
| | color: var(--text); |
| | text-transform: uppercase; |
| | font-size: 0.8rem; |
| | letter-spacing: 1px; |
| | } |
| | |
| | .copyright { |
| | font-size: 0.9rem; |
| | color: var(--secondary); |
| | } |
| | |
| | |
| | .back-to-top { |
| | position: fixed; |
| | bottom: 30px; |
| | right: 30px; |
| | width: 50px; |
| | height: 50px; |
| | background-color: var(--accent); |
| | color: var(--light); |
| | border-radius: 50%; |
| | display: flex; |
| | justify-content: center; |
| | align-items: center; |
| | font-size: 1.2rem; |
| | opacity: 0; |
| | visibility: hidden; |
| | transition: all 0.3s ease; |
| | z-index: 999; |
| | } |
| | |
| | .back-to-top.active { |
| | opacity: 1; |
| | visibility: visible; |
| | } |
| | |
| | .back-to-top:hover { |
| | background-color: var(--secondary); |
| | transform: translateY(-5px); |
| | } |
| | |
| | |
| | @media screen and (max-width: 768px) { |
| | h1 { |
| | font-size: 2.5rem; |
| | } |
| | |
| | h2 { |
| | font-size: 2rem; |
| | } |
| | |
| | .nav-links { |
| | position: fixed; |
| | top: 70px; |
| | left: -100%; |
| | width: 100%; |
| | height: calc(100vh - 70px); |
| | background-color: var(--dark); |
| | flex-direction: column; |
| | align-items: center; |
| | justify-content: center; |
| | transition: all 0.5s ease; |
| | } |
| | |
| | .nav-links.active { |
| | left: 0; |
| | } |
| | |
| | .nav-links li { |
| | margin: 1.5rem 0; |
| | } |
| | |
| | .hamburger { |
| | display: block; |
| | } |
| | |
| | .date { |
| | flex-direction: column; |
| | text-align: center; |
| | } |
| | |
| | .date-info { |
| | margin-bottom: 1rem; |
| | } |
| | |
| | .date-details { |
| | text-align: center; |
| | } |
| | } |
| | |
| | |
| | .fade-in { |
| | opacity: 0; |
| | transform: translateY(20px); |
| | transition: all 0.6s ease; |
| | } |
| | |
| | .fade-in.active { |
| | opacity: 1; |
| | transform: translateY(0); |
| | } |
| | |
| | .delay-1 { |
| | transition-delay: 0.2s; |
| | } |
| | |
| | .delay-2 { |
| | transition-delay: 0.4s; |
| | } |
| | |
| | .delay-3 { |
| | transition-delay: 0.6s; |
| | } |
| | |
| | .delay-4 { |
| | transition-delay: 0.8s; |
| | } |
| | |
| | |
| | ::-webkit-scrollbar { |
| | width: 10px; |
| | } |
| | |
| | ::-webkit-scrollbar-track { |
| | background: var(--dark); |
| | } |
| | |
| | ::-webkit-scrollbar-thumb { |
| | background: var(--primary); |
| | border-radius: 5px; |
| | } |
| | |
| | ::-webkit-scrollbar-thumb:hover { |
| | background: var(--secondary); |
| | } |
| | </style> |
| | </head> |
| | <body> |
| | |
| | <nav id="navbar"> |
| | <div class="nav-logo">NOSOUND</div> |
| | <ul class="nav-links"> |
| | <li><a href="#about">About</a></li> |
| | <li><a href="#music">Music</a></li> |
| | <li><a href="#tour">Tour</a></li> |
| | <li><a href="#contact">Contact</a></li> |
| | </ul> |
| | <div class="hamburger"> |
| | <i class="fas fa-bars"></i> |
| | </div> |
| | </nav> |
| |
|
| | |
| | <header> |
| | <img src="https://via.placeholder.com/200x200/6c5b7b/ffffff?text=NOSOUND" alt="Nosound Logo" class="logo"> |
| | <div class="header-content"> |
| | <h1>NOSOUND</h1> |
| | <p class="fade-in">Atmospheric Progressive Rock from Italy</p> |
| | <a href="#music" class="fade-in delay-1">Discover Our Music <i class="fas fa-chevron-down"></i></a> |
| | </div> |
| | <div class="scrolldown fade-in delay-2"> |
| | <i class="fas fa-arrow-down"></i> |
| | </div> |
| | </header> |
| |
|
| | |
| | <section id="about" class="about"> |
| | <div class="container"> |
| | <h2 class="section-title">About The Band</h2> |
| | <div class="about-content"> |
| | <div class="about-text fade-in"> |
| | <p>Nosound is an Italian progressive rock band formed in 2005 by composer and multi-instrumentalist Giancarlo Erra. Known for their atmospheric soundscapes blending elements of post-rock, ambient and progressive music, Nosound creates immersive sonic experiences that transcend traditional genre boundaries.</p> |
| | <p>The band's music is characterized by lush arrangements, cinematic sound design, and emotionally charged compositions that explore themes of memory, loss, and transcendence.</p> |
| | <p>Over the years, Nosound has released several critically acclaimed albums and performed at major progressive rock festivals across Europe. Their unique sound has earned them a dedicated following among fans of atmospheric and progressive music.</p> |
| | </div> |
| | <div class="about-image fade-in delay-1"> |
| | <img src="https://source.unsplash.com/random/600x400/?band,music" alt="Nosound Band Members"> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="music" class="music"> |
| | <div class="container"> |
| | <h2 class="section-title">Discography</h2> |
| | <div class="music-content"> |
| | <div class="albums"> |
| | <div class="album fade-in"> |
| | <div class="album-image"> |
| | <img src="https://via.placeholder.com/300x300/6c5b7b/ffffff?text=ALBUM+1" alt="Nosound Album"> |
| | </div> |
| | <div class="album-info"> |
| | <h3 class="album-title">Scintilla</h3> |
| | <p class="album-year">2022</p> |
| | <div class="album-links"> |
| | <a href="#" class="buy-btn"><i class="fas fa-shopping-cart"></i> Buy</a> |
| | <a href="#" class="listen-btn"><i class="fas fa-headphones"></i> Listen</a> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="album fade-in delay-1"> |
| | <div class="album-image"> |
| | <img src="https://via.placeholder.com/300x300/c06c84/ffffff?text=ALBUM+2" alt="Nosound Album"> |
| | </div> |
| | <div class="album-info"> |
| | <h3 class="album-title">A Sense of Loss</h3> |
| | <p class="album-year">2019</p> |
| | <div class="album-links"> |
| | <a href="#" class="buy-btn"><i class="fas fa-shopping-cart"></i> Buy</a> |
| | <a href="#" class="listen-btn"><i class="fas fa-headphones"></i> Listen</a> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="album fade-in delay-2"> |
| | <div class="album-image"> |
| | <img src="https://via.placeholder.com/300x300/e94560/ffffff?text=ALBUM+3" alt="Nosound Album"> |
| | </div> |
| | <div class="album-info"> |
| | <h3 class="album-title">Afterthoughts</h3> |
| | <p class="album-year">2016</p> |
| | <div class="album-links"> |
| | <a href="#" class="buy-btn"><i class="fas fa-shopping-cart"></i> Buy</a> |
| | <a href="#" class="listen-btn"><i class="fas fa-headphones"></i> Listen</a> |
| | </div> |
| | </div> |
| | </div> |
| | |
| | <div class="album fade-in delay-3"> |
| | <div class="album-image"> |
| | <img src="https://via.placeholder.com/300x300/2a1b3d/ffffff?text=ALBUM+4" alt="Nosound Album"> |
| | </div> |
| | <div class="album-info"> |
| | <h3 class="album-title">Lightdark</h3> |
| | <p class="album-year">2014</p> |
| | <div class="album-links"> |
| | <a href="#" class="buy-btn"><i class="fas fa-shopping-cart"></i> Buy</a> |
| | <a href="#" class="listen-btn"><i class="fas fa-headphones"></i> Listen</a> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="tour" class="tour"> |
| | <div class="container"> |
| | <h2 class="section-title">Tour Dates</h2> |
| | <div class="dates"> |
| | <div class="date fade-in"> |
| | <div class="date-info"> |
| | <h3 class="date-location">London, UK</h3> |
| | <p class="date-venue">Royal Albert Hall</p> |
| | </div> |
| | <div class="date-details"> |
| | <p class="date-day">June 15, 2023</p> |
| | <a href="#" class="tickets-btn">Get Tickets</a> |
| | </div> |
| | </div> |
| | |
| | <div class="date fade-in delay-1"> |
| | <div class="date-info"> |
| | <h3 class="date-location">Berlin, Germany</h3> |
| | <p class="date-venue">Tempodrom</p> |
| | </div> |
| | <div class="date-details"> |
| | <p class="date-day">July 2, 2023</p> |
| | <a href="#" class="tickets-btn">Get Tickets</a> |
| | </div> |
| | </div> |
| | |
| | <div class="date fade-in delay-2"> |
| | <div class="date-info"> |
| | <h3 class="date-location">Rome, Italy</h3> |
| | <p class="date-venue">Auditorium Parco della Musica</p> |
| | </div> |
| | <div class="date-details"> |
| | <p class="date-day">August 10, 2023</p> |
| | <a href="#" class="tickets-btn">Get Tickets</a> |
| | </div> |
| | </div> |
| | |
| | <div class="date fade-in delay-3"> |
| | <div class="date-info"> |
| | <h3 class="date-location">Paris, France</h3> |
| | <p class="date-venue">Le Trianon</p> |
| | </div> |
| | <div class="date-details"> |
| | <p class="date-day">September 5, 2023</p> |
| | <a href="#" class="tickets-btn">Get Tickets</a> |
| | </div> |
| | </div> |
| | |
| | <p class="no-dates fade-in delay-4">More dates to be announced soon...</p> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section id="contact" class="contact"> |
| | <div class="container"> |
| | <h2 class="section-title">Get in Touch</h2> |
| | <div class="contact-content"> |
| | <div class="contact-info fade-in"> |
| | <h3>Connect With Us</h3> |
| | <div class="contact-details"> |
| | <div class="contact-detail"> |
| | <i class="fas fa-envelope"></i> |
| | <span>info@nosoundband.com</span> |
| | </div> |
| | <div class="contact-detail"> |
| | <i class="fas fa-phone"></i> |
| | <span>+39 123 456 7890</span> |
| | </div> |
| | <div class="contact-detail"> |
| | <i class="fas fa-map-marker-alt"></i> |
| | <span>Rome, Italy</span> |
| | </div> |
| | </div> |
| | <h3>Follow Us</h3> |
| | <div class="social-links"> |
| | <a href="#" class="social-link"><i class="fab fa-facebook-f"></i></a> |
| | <a href="#" class="social-link"><i class="fab fa-twitter"></i></a> |
| | <a href="#" class="social-link"><i class="fab fa-instagram"></i></a> |
| | <a href="#" class="social-link"><i class="fab fa-youtube"></i></a> |
| | <a href="#" class="social-link"><i class="fab fa-spotify"></i></a> |
| | </div> |
| | </div> |
| | <div class="contact-form fade-in delay-1"> |
| | <form id="contactForm"> |
| | <div class="form-group"> |
| | <label for="name">Name</label> |
| | <input type="text" id="name" required> |
| | </div> |
| | <div class="form-group"> |
| | <label for="email">Email</label> |
| | <input type="email" id="email" required> |
| | </div> |
| | <div class="form-group"> |
| | <label for="message">Message</label> |
| | <textarea id="message" required></textarea> |
| | </div> |
| | <button type="submit" class="submit-btn">Send Message</button> |
| | </form> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <footer> |
| | <div class="footer-content"> |
| | <div class="footer-links"> |
| | <a href="#">Privacy Policy</a> |
| | <a href="#">Terms of Service</a> |
| | <a href="#">Press</a> |
| | <a href="#">Blog</a> |
| | <a href="#">FAQ</a> |
| | </div> |
| | <p class="copyright">© 2023 Nosound. All Rights Reserved.</p> |
| | </div> |
| | </footer> |
| |
|
| | |
| | <a href="#" class="back-to-top"> |
| | <i class="fas fa-arrow-up"></i> |
| | </a> |
| |
|
| | <script> |
| | |
| | document.querySelectorAll('a[href^="#"]').forEach(anchor => { |
| | anchor.addEventListener('click', function(e) { |
| | e.preventDefault(); |
| | |
| | document.querySelector(this.getAttribute('href')).scrollIntoView({ |
| | behavior: 'smooth' |
| | }); |
| | }); |
| | }); |
| | |
| | |
| | const navbar = document.getElementById('navbar'); |
| | const backToTop = document.querySelector('.back-to-top'); |
| | |
| | window.addEventListener('scroll', () => { |
| | if (window.scrollY > 100) { |
| | navbar.classList.add('scrolled'); |
| | backToTop.classList.add('active'); |
| | } else { |
| | navbar.classList.remove('scrolled'); |
| | backToTop.classList.remove('active'); |
| | } |
| | }); |
| | |
| | |
| | const hamburger = document.querySelector('.hamburger'); |
| | const navLinks = document.querySelector('.nav-links'); |
| | |
| | hamburger.addEventListener('click', () => { |
| | navLinks.classList.toggle('active'); |
| | hamburger.innerHTML = navLinks.classList.contains('active') |
| | ? '<i class="fas fa-times"></i>' |
| | : '<i class="fas fa-bars"></i>'; |
| | }); |
| | |
| | |
| | document.querySelectorAll('.nav-links a').forEach(link => { |
| | link.addEventListener('click', () => { |
| | navLinks.classList.remove('active'); |
| | hamburger.innerHTML = '<i class="fas fa-bars"></i>'; |
| | }); |
| | }); |
| | |
| | |
| | const fadeElements = document.querySelectorAll('.fade-in'); |
| | |
| | const fadeInOnScroll = () => { |
| | fadeElements.forEach(element => { |
| | const elementTop = element.getBoundingClientRect().top; |
| | const windowHeight = window.innerHeight; |
| | |
| | if (elementTop < windowHeight - 100) { |
| | element.classList.add('active'); |
| | } |
| | }); |
| | }; |
| | |
| | window.addEventListener('scroll', fadeInOnScroll); |
| | window.addEventListener('load', fadeInOnScroll); |
| | |
| | |
| | const contactForm = document.getElementById('contactForm'); |
| | |
| | contactForm.addEventListener('submit', (e) => { |
| | e.preventDefault(); |
| | |
| | |
| | const name = document.getElementById('name').value; |
| | const email = document.getElementById('email').value; |
| | const message = document.getElementById('message').value; |
| | |
| | |
| | |
| | alert(`Thank you, ${name}! Your message has been sent. We'll get back to you soon.`); |
| | |
| | |
| | contactForm.reset(); |
| | }); |
| | </script> |
| | <p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <a href="https://enzostvs-deepsite.hf.space" style="color: #fff;" target="_blank" >DeepSite</a> <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;"></p></body> |
| | </html> |