-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBeach.html
101 lines (64 loc) · 2.92 KB
/
Beach.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>Meath Gold Coast</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/themes/default/jquery.mobile-1.4.0.min.css">
<link rel="stylesheet" href="css/design.css">
<script src="js/jquery.js"></script>
<script src="js/jquery.mobile-1.4.0.min.js"></script>
<script src="js/script.js"></script> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script>
function initialize() {
var mapOptions = {
zoom: 16,
center: new google.maps.LatLng(53.698704,-6.243407)
};
map = new google.maps.Map(document.getElementById('map-canvas'),
mapOptions);
var marker = new google.maps.Marker({
position: new google.maps.LatLng(53.698704,-6.243407),
map: map,
title: 'The Beach'
});
}
$(document).on("pageinit", function(event) { initialize(); });
</script>
<script src="js/script.js"></script> <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
</head>
<body>
<div data-role="page">
<!-- Header end -->
<div data-id="dojoheader" data-role="header" data-theme="b" class="ui-header ui-bar-a" style="background-color:#3300CC" data-position="fixed">
<div class="bannerbox" style="background-color:#3f8de0; height:109px">
<img id="logo" style="float:right;height:109px" src="MGCBanner.jpg">
</div>
<h1 class="ui-title">The Beach</h1>
<a href="#left-panel" data-icon="bars" data-iconpos="notext" data-shadow="false" data-iconshadow="false">Menu</a>
<a data-icon="home" data-iconpos="notext" data-direction="reverse" href="index.html">Home</a>
</div>
<div role="main" class="ui-content">
<ul data-role="listview" data-inset="true">
<li><a href="attractions.html">Back</a></li>
</ul>
<p> <h2> <img src="AttractionImages/Photo21.jpg" /> </h2> </p>
<br>
<p> <h1> The Beach </h1> </p>
<br>
<p>The beautiful 10km stretch of sandy beach running south from the mouth of the river Boyne at Mornington to the Delvin river at Gormanston is "The Meath Gold Coast".</p>
<p>Taking in Mornington, Bettystown, Laytown, across the river Nanny, via Mosney to the river Delvin at Gormanston, this wonderful expanse of beach is ideal for walking, swimming, horseriding, sand & water sports or simply for kids to explore and build sandcastles.</p>
<p>Annually the beach hosts the Laytown races, the National Sandcastle championships and an array of sand kiting competitions. </p>
<p>It is enjoyed by locals for invigorating walks on the beach, through the dunes and for the adventurous the whole way along the Meath & Dublin coastline to Balbriggan</p>
<br>
<div id="map-canvas"></div>
</div>
<div data-role="panel" id="left-panel">
<div class="panelhtml"></div>
</div><!-- /panel -->
</div>
</div>
<div data-role="footer">
</div>
</body>
</html>