-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
56 lines (51 loc) · 2.51 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>About - 11th St.</title>
<link rel="stylesheet" href="styles.css"/>
<script src="script.js" defer></script>
</head>
<body>
<header>
<nav>
<div class="logo">
<img src="public/images/11thstLOGO.jpeg" alt="11th St Logo" class="logo-image">
<span class="logo-text">St.</span>
</div>
<ul class="nav-links">
<li><a href="index.html">Home</a></li>
<li><a href="events.html">Events</a></li>
<li><a href="mixes.html">Mixes</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<div class="burger">
<div></div>
<div></div>
<div></div>
</div>
</nav>
</header>
<main>
<section class="container no-hero-section">
<h2>Who We Are</h2>
<p>11th St. Sounds is a collective of DJs who channel the energy of New York’s underground into every beat we drop. From hidden stations and abandoned lots to public parks and rooftops, we bring the soundscapes of the city’s soul directly to you. Our mission is to blur the lines between public space and private party, blending communities through shared musical experiences.</p>
<h2>Our Philosophy</h2>
<p>We believe music is a journey, much like riding the subway: every stop is a different neighborhood, a new influence, and fresh energy. We’re here to connect those sonic neighborhoods. Whether you’re warming up for a night out, chilling with friends, or just need a soundtrack to your commute, our mixes transport you to a sonic world where genres blend and every beat tells a story.</p>
</section>
</main>
<footer>
<div class="footer-content">
<p>© 2024 11th St. Sounds, NYC. All rights reserved.</p>
<p>Follow us underground:</p>
<div class="social-links">
<a href="#"><img src="public/images/11thstLOGO.jpeg" alt="Social Icon"></a>
<a href="#"><img src="public/images/11thstLOGO.jpeg" alt="Social Icon"></a>
<a href="#"><img src="public/images/11thstLOGO.jpeg" alt="Social Icon"></a>
</div>
</div>
</footer>
</body>
</html>