-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharea.html
127 lines (97 loc) · 5.67 KB
/
area.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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>Area</title>
<meta name="description" content="">
<!-- Mobile viewport optimized -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.css"
<!--Custom CSS-->
<link rel="stylesheet" type="text/css" href="includes/css/styles.css">
<!-- Include Modernizr in the head, before any other Javascript -->
<script src="js/modernizr.js"></script>
</head>
<body>
<div class="container" id="main">
<nav class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button class="navbar-toggle" data-target=".navbar-responsive-collapse" data-toggle="collapse" type="button">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html"><img src="images/pegasus_logo.png" alt="Pegasus Studios"></a>
</div><!--end of navbar-header-->
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav navbar-right">
<li>
<a id="home" href="index.html">Home</a>
</li>
<li><a id="facil" href="facilities.html">Facilities</a></li>
<li class="active current"><a id="area" href="area.html">Area</a></li>
<li><a id="photo" href=photo_gallery.html>Photo Gallery</a></li>
<li><a id="contact" href="#myModal" role="button" data-toggle="modal" data-backdrop="static">Contact Us</a></li>
<div class="modal fade" id="myModal">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button class="close" data-dismiss="modal">×</button>
<h4 class="modal-title">Contact Us</h4>
</div><!--end of modal-header-->
<div class="modal-body">
<h4 class="modal-title">Let Us Know What You Think</h4>
<p>Whether you are having questions or complaints, or even if you have suggestions,
please let us know!</p>
<h4>Telephone Numbers</h4>
<p>Pegasus Studios: +302897031647<br>
Mobile: +306973019736</p>
<h4>Email</h4>
<p>[email protected]</p>
<hr>
<p><small class="text-muted">Please fill in the form and send it to us. We 'll get back at you as soon as possible</small></p>
<form class="form-horizontal">
<div class="form-group">
<label class="col-lg-2 control-label" for="inputName">Name</label>
<div class="col-lg-10">
<input class="form-control" id="inputName" placeholder="Name" type="text">
</div><!--end of form-group Name-->
</div>
<div class="form-group">
<label class="col-lg-2 control-label" for="inputEmail">Email</label>
<div class="col-lg-10">
<input class="form-control" id="inputEmail" placeholder="Email" type="email">
</div><!--end of form-group Email-->
</div>
<div class="form-group">
<label class="col-lg-2 control-label" for="inputMessage">Message</label>
<div class="col-lg-10">
<textarea class="form-control" id="inputMessage" placeholder="Message" rows="3"></textarea>
</div>
</div>
</form>
</div><!--end of modal-body-->
<div class="modal-footer">
<button class="btn btn-default btn-primary" type="button">Send</button>
</div>
</div><!--end of modal-content-->
</div><!--end of modal-dialog-->
</div><!--end of modal-->
</ul><!--end of nav-->
</div><!--end of nav-collapse-->
</div><!--end of container-->
</nav><!--end of navbar-->
</div><!--end of container main-->
<!-- All Javascript at the bottom of the page for faster page loading -->
<!-- First try for the online version of jQuery-->
<script src="http://code.jquery.com/jquery.js"></script>
<!-- If no online access, fallback to our hardcoded version of jQuery -->
<script>window.jQuery || document.write('<script src="includes/js/jquery-1.8.2.min.js"><\/script>')</script>
<!-- Bootstrap JS -->
<script src="js/bootstrap.min.js"></script>
<!-- Custom JS -->
<script src="js/script.js"></script>
</body>
</html>