-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
80 lines (78 loc) · 4.82 KB
/
404.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Friends of Madison Area Science Clubs</title>
<link rel="icon" href="images/favicon.ico">
<link rel="stylesheet" href="scss/custom.css">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-I7E8VVD/ismYTF4hNIPjVp/Zjvgyol6VFvRkX/vR+Vc4jQkC+hVqc2pM8ODewa9r" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script>
</head>
<body data-bs-theme="dark">
<nav style="height:10vh" id="navbar-example2" class="navbar navbar-expand-lg sticky-top bg-body-tertiary px-3 mb-3">
<div class="container-fluid">
<a class="navbar-brand" href="index.html">Friends of Madison Area Science Clubs</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarScroll" aria-controls="navbarScroll" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse bg-body-tertiary justify-content-end" id="navbarScroll">
<ul class="nav nav-pills">
<li class="nav-item">
<a class="nav-link active" href="index.html">Our Mission</a>
</li>
<li class="nav-item">
<a class="nav-link" href="badger.html">Badger Invitational</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-bs-toggle="dropdown" href="#" role="button" aria-expanded="false">Our Initiatives</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="scioly.html">Science Olympiad</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="chambergroup.html">Sounds of Music Chamber Group</a></li>
</ul>
</li>
<li class="nav-item d-flex">
<a class="btn btn-outline-success" href="https://donorbox.org/2025-science-donation-drive" target="_blank">Support Us</a>
</li>
</ul>
</div>
</div>
</nav>
<div id="carouselExampleAutoplaying" class="carousel position-relative" data-bs-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img src="images/home/badger-katie-nathaniel.jpg" class="d-block w-50 mx-auto" alt="2 smiling coaches standing together">
</div>
<div class="carousel-item">
<img src="images/home/platville-chem-study.jpg" class="d-block w-50 mx-auto" alt="platville team studying on event">
</div>
<div class="carousel-item">
<img src="images/home/badger-team-happy-medal.jpg" class="d-block w-50 mx-auto" alt="happy students after receiving their medals">
</div>
<div class="carousel-item">
<img src="images/home/badger-team-happy-concessions.png" class="d-block w-50 mx-auto" alt="happy students standing together near concessions stand">
</div>
<button class="carousel-control-prev" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="prev">
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
<span class="visually-hidden">Previous</span>
</button>
<button class="carousel-control-next" type="button" data-bs-target="#carouselExampleAutoplaying" data-bs-slide="next">
<span class="carousel-control-next-icon" aria-hidden="true"></span>
<span class="visually-hidden">Next</span>
</button>
</div>
<div id="titlebox">
<div class="carousel-title position-absolute top-50 start-50 translate-middle text-center bg-body-secondary bg-opacity-50" id="title">
<div style="height:33vh" class="spacer-fill"></div>
<h1 id="title-text" class="display-3 fw-bolder text-body-emphasis">Page Not Found</h1>
<div id="title-text-subheading" class="mx-auto lead mb-4">
The page you were looking for has not been found. We are dispatching our top developers for this issue. <a href="mailto:[email protected]">Shoot me an email</a>
</div>
<div style="height:33vh; width: 100vw" class="spacer-fill"></div>
</div>
</div>
</div>
</body>
</html>