-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
73 lines (65 loc) · 2.08 KB
/
contact.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Contact - 11th Street Sounds</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body class="page-contact">
<!-- Background Image Cycler -->
<div class="background-cycler">
<img src="images/11thbackground2.jpeg" alt="Background 1" class="active">
<img src="images/11thstreet234.JPG" alt="Background 2">
<img src="images/poopy.jpeg" alt="Background 3">
</div>
<header>
<div class="header-record"></div>
<nav>
<div class="logo">
<div class="mini-record-container">
<img src="images/11logo.jpg" alt="Mini Logo" class="mini-spinning-record" />
<a href="index.html" class="home-link" aria-label="Home"></a>
</div>
<span class="logo-text">11<span class="subscript-th">th</span> Street Sounds</span>
</div>
</nav>
</header>
<main class="content contact-content">
<h1>Get in Touch</h1>
<div class="contact-container">
<form id="contactForm" class="contact-form">
<div class="form-group">
<input type="text" id="name" required>
<label for="name">Name</label>
</div>
<div class="form-group">
<input type="email" id="email" required>
<label for="email">Email</label>
</div>
<div class="form-group">
<textarea id="message" required></textarea>
<label for="message">Message</label>
</div>
<button type="submit">Send Message</button>
</form>
<div class="contact-info">
<div class="info-item">
<h3>Location</h3>
<p>11th St, East Village</p>
</div>
<div class="info-item">
<h3>Hours</h3>
<p>Mon-Fri: 10AM - 10PM</p>
<p>Sat-Sun: 12PM - Late</p>
</div>
</div>
</div>
</main>
<footer>
<div class="footer-record"></div>
<p>© 2025 11th Street Sounds. All Rights Reserved.</p>
</footer>
<script src="script.js"></script>
</body>
</html>