-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbsn.php
49 lines (42 loc) · 1.22 KB
/
bsn.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Ticket Price</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="css/bootstrap.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</head>
<body>
<?php include("rh.html");?>
<div class="row">
<div class="col-sm-1">
</div>
<div class="col-sm-2">
<h3>Mon - Tue (All Day)<br>
Mon - Fri (1pm only)</h3>
<p>Standard-Full $12</p>
<p>Standard-Conc $10</p>
<p>Standard-Child $8</p>
<p>FirstClass-Adult $25</p>
<p>FirstClass-Child $20</p>
<p>Beanbag $20</p>
</div>
<div class="col-sm-3">
<h3>Wed - Fri (not 1pm)<br>
Sat - Sun (All Day)</h3>
<p>Standard-Full $18</p>
<p>Standard-Conc $15</p>
<p>Standard-Child $12</p>
<p>FirstClass-Adult $30</p>
<p>FirstClass-Child $25</p>
<p>Beanbag $20</p>
</div>
<div class="col-sm-4">
</div>
</div>
<?php include("footer.html");?>
</body>
</html>