-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHartfordParade.html
More file actions
54 lines (44 loc) · 1.51 KB
/
HartfordParade.html
File metadata and controls
54 lines (44 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DTMF Party - DB Yale</title>
<link rel="stylesheet" href="style.css"> <!-- Link your CSS -->
<!-- Favicon links for browser tab icons -->
<link rel="icon" type="image/png" href="./DB Logo Outline.png">
<link rel="icon" type="DB Logo Outline.png" href="favicon.ico">
</head>
<body>
<!-- Hamburger button for mobile -->
<button class="hamburger-btn">
<span></span>
<span></span>
<span></span>
</button>
<a href="gallery.html" class="back-to-gallery desktop-back">
<i class="fas fa-arrow-left"></i> Back to Gallery
</a>
<main class="main-content">
<section class="event-gallery">
<h2 id="gallery-title"> Hartford Puerto Rican Parade</h2>
<div class="image-grid">
<img src="./Sept-Oct/parade1.jpg" alt="Hartford Parade 1">
<img src="./Sept-Oct/parade2.jpg" alt="Hartford Parade 2">
<img src="./Sept-Oct/parade3.jpg" alt="Hartford Parade 3">
<img src="./Sept-Oct/parade4.jpg" alt="Hartford Parade 4">
<img src="./Sept-Oct/parade5.jpg" alt="Hartford Parade 1">
<img src="./Sept-Oct/parade6.jpg" alt="Hartford Parade 2">
<img src="./Sept-Oct/parade7.jpg" alt="Hartford Parade 3">
<img src="./Sept-Oct/parade8.jpg" alt="Hartford Parade 4">
</div>
</section>
</main>
<!-- Footer (Optional) -->
<footer>
<p>© 2025 DB Yale</p>
</footer>
<!-- Link to JS if needed -->
<script src="script.js"></script>
</body>
</html>