-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorganization-overview.html
34 lines (34 loc) · 1.25 KB
/
organization-overview.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="styles.css">
<title>Orientation Video Modules</title>
<script
src="https://code.jquery.com/jquery-3.3.1.js"
integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
crossorigin="anonymous">
</script>
<script>
$(function(){
$("#header").load("/insertables/header.html");
$("#footer").load("/insertables/footer.html");
});
</script>
<script defer src="JavaScript/jquery-1.10.2.js" type="text/javascript"></script>
</head>
<body>
<div id="header"></div>
<div class="content">
<h1>Organization Overview</h1>
<ul>
<li>In this video, we’ll give an overview of Crafts for Charity</li>
<li>We’ll start with the Description and History, then move on to the Mission, Vision, and Values, Programs & Target Market, Culture, and Time Zones</li>
</ul>
</div>
<div class="btn-container">
<a href="/index.html">Back</a>
<a href="/structure-key-staff.html">Next</a>
</div>
<div id="footer"></div>
</body>
</html>