-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
80 lines (80 loc) · 2.56 KB
/
index.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>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Friends of Cherry Valley National Wildlife Refuge</title>
<link href="styles.css" rel="stylesheet" type="text/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://code.jquery.com/jquery-1.10.2.js"></script>
</head>
<body>
<script src="script.js"></script>
<script
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"></script>
<div id="nav-placeholder"></div>
<main class="row text-center g-0" id="homepage">
<div
class="backdrop col-8 d-flex align-items-center justify-content-center text-center">
<p class="">Preserving Cherry Valley since 2002</p>
</div>
<div
class="info-sidebar col-4 d-flex flex-column justify-content-between g-0">
<div class="about-us">
<div
class="overlay d-flex flex-column container justify-content-center">
<h3 class="row g-0">
<a href="/about-us.html">WHAT WE DO</a>
</h3>
<p class="m-0">
We are a dedicated group of local residents and
conservationists protecting the valley's history,
agricultural heritage and natural resources.
</p>
</div>
</div>
<div class="events">
<div
class="overlay d-flex flex-column container justify-content-center">
<h3 class="row g-0">
<a href="/events.html">OUR EVENTS</a>
</h3>
<p class="m-0">Check out our upcoming events!</p>
</div>
</div>
<div class="newsletter">
<div
class="overlay d-flex flex-column container justify-content-center">
<h3 class="row g-0">
<a href="/newsletter.html">NEWSLETTER</a>
</h3>
<p class="m-0">
Take a look at our newsletter and YouTube channel to
get the latest info on all things FOCV!
</p>
</div>
</div>
<div class="gallery">
<div
class="overlay d-flex flex-column container justify-content-center">
<h3 class="row g-0">
<a href="/gallery.html">PHOTO GALLERY</a>
</h3>
<p class="m-0">
Explore our photo gallery of the breathtaking Cherry
Valley.
</p>
</div>
</div>
</div>
<br />
</main>
<div id="footer-placeholder"></div>
</body>
</html>