-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhotos.html
121 lines (108 loc) · 3.77 KB
/
Photos.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>DevMission Cohort #27</title>
<link
rel="icon"
href="https://cdn.glitch.global/79e62202-998e-4e6f-92a5-d89ab595ece8/devmissionsitelogo.png?v=1732068472378"
alt="hands coming together"
/>
<link rel="stylesheet" href="/style.css">
<link rel="stylesheet" href="/experience.css" />
<link rel="stylesheet" href="/navbar.css">
<link rel="stylesheet" href="/Photos.css">
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH"
crossorigin="anonymous"
/>
</head>
<body>
<!-- start of navbar -->
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top toppage">
<div class="container-fluid">
<div class="navbar-brand">
<a href="index.html"
><img
src="https://cdn.glitch.global/79e62202-998e-4e6f-92a5-d89ab595ece8/cropped-DM-Full-Logo-01-2048x769.png?v=1732070442895"
alt="Dev Mission logo"
class="devlogo"
/></a>
</div>
<button
class="navbar-toggler"
type="button"
data-bs-toggle="collapse"
data-bs-target="#navbarNavDropdown"
aria-controls="navbarNavDropdown"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNavDropdown">
<ul class="navbar-nav">
<li class="nav-item active">
<a class="nav-link" aria-current="page" href="/index.html"
>Home</a
>
</li>
<li class="nav-item">
<a class="nav-link" href="/experience.html">Cohort #27</a>
</li>
<li class="nav-item">
<a class="nav-link" href="/Photos.html">Gallery</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- end of navbar -->
<!-- collage, fetch images -->
<h1>Photo Gallery</h1>
<div class="gallery" id="gallery"></div>
<script src="Photos.js"></script>
<!-- footer -->
<footer class="bg-body-tertiary text-black pt-4">
<div class="container">
<div class="row">
<div class="col-md-4 mb-4">
<h5>About Dev Mission</h5>
<p>
Dev Mission empowers youth and adults through technology education,
creating opportunities and fostering innovation in underserved communities.
</p>
</div>
<div class="col-md-4 mb-4">
<h5>Quick Links</h5>
<ul class="list-unstyled">
<li><a href="/index.html" class="text-black text-decoration-none">Home</a></li>
<li><a href="/experience.html" class="text-black text-decoration-none">Cohort #27</a></li>
<li><a href="/Photos.html" class="text-black text-decoration-none">Gallery</a></li>
</ul>
</div>
<div class="col-md-4 text-center mb-4">
<h5>About Cohort 27</h5>
<p>
We rock!!!!!!
</p>
</div>
</div>
<hr class="border-dark" />
<div class="text-center pb-3">
<p class="mb-0">© 2024 Dev Mission. All Rights Reserved.</p>
</div>
</div>
</footer>
<!-- Bootstrap JS script-->
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<!-- <script src="experience.js"></script> -->
</body>
</html>