-
Notifications
You must be signed in to change notification settings - Fork 3
/
strategy.html
112 lines (108 loc) · 5.07 KB
/
strategy.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>CEDS Strategy Committee</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8">
<meta content="IE=edge"
http-equiv="X-UA-Compatible">
<meta content="WAEDD uses this CEDS Strategy Committee form to collect volunteer information and details for planning purposes."
name="description">
<meta content="Alan Pruitt, @westernazedd"
name="author">
<meta content="Western Arizona Economic Development District, Inc."
name="copyright">
<meta content="index,follow"
name="robots">
<meta content="https://www.waedd.org/strategy.html"
name="url">
<meta content="G-VB90GJLZ0J"
name="google-analytics">
<meta content="Global"
name="distribution">
<link href="img/favicon/waedd-favicon.png"
rel="icon"
type="img/favicon">
<link rel="apple-touch-icon" sizes="60x60" href="img/touch-icons/apple-touch-icon-ipad-76x76.png">
<link rel="stylesheet" type="text/css" href="css/waedd.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-orange.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
body {font-family: "Roboto", sans-serif}
.w3-bar-block .w3-bar-item {
padding: 16px;
font-weight: bold;
}
</style>
</head>
<body>
<nav class="w3-sidebar w3-bar-block w3-collapse w3-animate-left w3-card" style="z-index:3;width:250px;" id="mySidebar">
<a class="w3-bar-item w3-button w3-border-bottom w3-large" href="#"><img src="/img/webp/waedd-logo.webp" alt="western arizona economic develoment district logo" style="width:80%;"></a>
<a class="w3-bar-item w3-button w3-hide-large w3-large" href="javascript:void(0)" onclick="w3_close()">Close <i class="fa fa-remove"></i></a>
<a class="w3-bar-item w3-button w3-orange" href="index.html">Home</a>
<a class="w3-bar-item w3-button" href="about.html">About</a>
<a class="w3-bar-item w3-button" href="board.html">Board</a>
<a class="w3-bar-item w3-button" href="ceds.html">CEDS</a>
<a class="w3-bar-item w3-button" href="contact.html">Contact</a>
<a class="w3-bar-item w3-button" href="distress.html">Distress</a>
<a class="w3-bar-item w3-button" href="files.html">Files</a>
<a class="w3-bar-item w3-button" href="meetings.html">Meetings</a>
<a class="w3-bar-item w3-button" href="partners.html">Partners</a>
<a class="w3-bar-item w3-button" href="projects.html">Projects</a>
<a class="w3-bar-item w3-button" href="sitemap.html">Sitemap</a>
<a class="w3-bar-item w3-button" href="twitter.html">Twitter</a>
</nav>
<div class="w3-overlay w3-hide-large w3-animate-opacity" onclick="w3_close()" style="cursor:pointer" id="myOverlay"></div>
<div class="w3-main" style="margin-left:250px;">
<div id="myTop" class="w3-container w3-top w3-theme w3-large">
<p><i class="fa fa-bars w3-button w3-orange w3-hide-large w3-xlarge" onclick="w3_open()"></i>
<span id="myIntro" class="w3-hide">CEDS Strategy Committee</span></p>
</div>
<header class="w3-container w3-theme" style="padding: 32px">
<h1 class="w3-xxlarge">Western Arizona Economic Development District</h1>
</header>
<div class="w3-container" style="padding:32px">
<h2>2021 CEDS Strategy Committee Volunteer Registration</h2>
<iframe src="https://docs.google.com/forms/d/e/1FAIpQLSczKNVmmEtPLDfC7ij3uJpFtzvSgNeujMwPTjE5Tb7P8j66GA/viewform?embedded=true" width="640" height="3007" frameborder="0" marginheight="0" marginwidth="0">Loading…</iframe>
<hr>
</div>
<footer class="w3-container w3-theme" style="padding:32px">
<q>We build connections with the people and communities in La Paz, Mohave, and Yuma counties.</q>
</footer>
<script>
// Open and close the sidebar on medium and small screens
function w3_open() {
document.getElementById("mySidebar").style.display = "block";
document.getElementById("myOverlay").style.display = "block";
}
function w3_close() {
document.getElementById("mySidebar").style.display = "none";
document.getElementById("myOverlay").style.display = "none";
}
// Change style of top container on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
if (document.body.scrollTop > 80 || document.documentElement.scrollTop > 80) {
document.getElementById("myTop").classList.add("w3-card-4", "w3-animate-opacity");
document.getElementById("myIntro").classList.add("w3-show-inline-block");
} else {
document.getElementById("myIntro").classList.remove("w3-show-inline-block");
document.getElementById("myTop").classList.remove("w3-card-4", "w3-animate-opacity");
}
}
// Accordions
function myAccordion(id) {
var x = document.getElementById(id);
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
x.previousElementSibling.className += " w3-theme";
} else {
x.className = x.className.replace("w3-show", "");
x.previousElementSibling.className =
x.previousElementSibling.className.replace(" w3-theme", "");
}
}
</body>
</html>