-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (70 loc) · 3.64 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
<!DOCTYPE html>
<html lang="en">
<title> </title>
<meta charset="utf-8">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Rock+Salt" rel="stylesheet"> <!--rocksalt google font-->
<link rel="stylesheet" type="text/css" href="style.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="jquery.slabtext.min.js"></script>
<script src="script.js"></script>
<body>
<div class="wrapper">
<header>
<div id="header-img"></div>
<h1 id="slab1">Pigs in the woods</h1>
<h2 id="slab2">Huddersfield</h2>
<hr />
<nav>
<ul>
<li><a href="#"> About </a></li>
<li><a href="#"> History </a></li>
<li>
<a href="#"> Meet the Pigs </a>
<ul>
<li><a href="#">Pig 1</a></li>
<li><a href="#">Pig 2</a></li>
<li><a href="#">Pig 3</a></li>
<li><a href="#">Pig 4</a></li>
</ul>
</li>
<li><a href="#"> Volunteering </a></li>
<li><a href="#"> Donate </a></li>
<li><a href="#"> Contact </a></li>
</ul>
</nav>
<hr />
</header>
<section class="content">
<h1>About Us</h1>
<p> Hi there! We are pigs in the woods. We own a piece of woodland in the (area name) area, near Huddersfield, where we look after
(number) rescue pigs! We rely on volunteers and donations so that we can continue to give these pigs their natural loving home.
</p>
<h2> Who are we </h2>
<p> We are Jac and Russel, a husband and wife team. </p>
<p> (a picture of you looking cool) </p>
<h2> Where we are </h2>
<p>
We are located (describe location).
</p>
<script src='https://maps.googleapis.com/maps/api/js?v=3.exp'></script><div style='overflow:hidden;height:440px;width:700px;'><div id='gmap_canvas' style='height:440px;width:700px;'></div><div><small><a href="http://embedgooglemaps.com"> embed google maps </a></small></div><div><small><a href="https:/disclaimergenerator.net">disclaimer example</a></small></div><style>#gmap_canvas img{max-width:none!important;background:none!important}</style></div><script type='text/javascript'>function init_map(){var myOptions = {zoom:10,center:new google.maps.LatLng(53.574585,-1.6529609000000391),mapTypeId: google.maps.MapTypeId.ROADMAP};map = new google.maps.Map(document.getElementById('gmap_canvas'), myOptions);marker = new google.maps.Marker({map: map,position: new google.maps.LatLng(53.574585,-1.6529609000000391)});infowindow = new google.maps.InfoWindow({content:'<strong>Title</strong><br>denby dale<br>'});google.maps.event.addListener(marker, 'click', function(){infowindow.open(map,marker);});infowindow.open(map,marker);}google.maps.event.addDomListener(window, 'load', init_map);</script>
<br />
<h2> About the woods </h2>
<p>
(map of the woods)
</p>
<p>
We hold a variety of events at the woods, including school visits, fairs and treasure hunts. Please go to our Events page
to find out about upcoming events, or to the Contact page if you are interested in arranging a visit.
</p>
<h2>About Veganism </h2>
<p>
We believe animals should not be exploited and abused for our satisfaction. We try to apply this principal wherever we can in our lives.
Of course everyone's circumstances are different but we encourage everyone to eliminate the products of animal suffering from their lives
wherever they are able. If you are interested in finding out more, we recomend (resources you like), and there are plenty of others out
there. If you are thinking of switching to a fully plant-based diet, we recommend checking out <a href="http://veganhealth.org/">veganhealth.org
</a> as you make the change.
</p>
</section>
</div> <!-- close wrapper div -->
</body>
</html>