-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathticket.php
More file actions
executable file
·209 lines (118 loc) · 7.86 KB
/
ticket.php
File metadata and controls
executable file
·209 lines (118 loc) · 7.86 KB
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="img/favicon.png">
<title>Ticket </title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style-sheet.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700,700i" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<?php include("header.php") ;?>
<section class="speaker-sec ticket-bg" style="padding-bottom: 50px;">
<div class="container">
<div class="spekader-head">
<h3> Tickets</h3>
<p> Conference ticket purchase includes: 2 full days of sessions and exhibitor booths, ticket to the official conference party on April 11 for you and a guest, morning snack, lunch and afternoon snack on both days. </p>
<div class="ticket-list">
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> Super Early Bird </h3>
<h6> Jan 29 - Feb 16 </h6>
<img src="img/super_early_bid_icon.png" alt="early_bird_icon"/>
<h2> $149</h2>
<h4> SOLD OUT </h4>
<div class="sold_out_badge"></div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> Early Bird </h3>
<h6> Feb 17 - March 3 </h6>
<img src="img/early_bird_icon.png" alt="early_bird_icon"/>
<h2> $249 </h2>
<h4> SOLD OUT </h4>
<div class="sold_out_badge"></div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> Regular </h3>
<h6> March 4 - March 31</h6>
<img src="img/regular_icon.png" alt="early_bird_icon"/>
<h2> $399</h2>
<h4> SOLD OUT </h4>
<div class="sold_out_badge"></div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> Students </h3>
<h6>Jan 29 - Apr 5 </h6>
<img src="img/student_ticket.png" alt="early_bird_icon"/>
<h2> $199</h2>
<h4> SOLD OUT </h4>
<div class="sold_out_badge"></div>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> Late Bird</h3>
<h6> April 1 - April 9 </h6>
<img src="img/late_icon.png" alt="late_icon"/>
<h2> $499</h2>
<a href="#"> Buy Now</a>
</div>
</div>
<div class="col-md-4 col-sm-6">
<div class="ticket1">
<h3> At the Door </h3>
<h6>During the conference </h6>
<img src="img/door_ticket.png" alt="late_icon"/>
<h2>$599 </h2>
<a href="#"> On Site </a>
</div>
</div>
</div>
</div>
</div> <!-- container -->
</section>
<section class="form-bottom">
<div class="container">
<div class="footer-form">
<p> Do you want to get in touch with us?</p>
<p> Fill in the form and we'll get back to you in the next 24 hours! </p>
<form>
<div class="col-md-6">
<input type="text" placeholder="Name">
</div>
<div class="col-md-6">
<input type="text" placeholder="E-mail">
</div>
<div class="col-md-12">
<textarea placeholder="Message " rows="5" cols="5"></textarea>
</div>
<div class="col-md-6">
<input type="submit" value="Submit">
</div>
</form>
</div>
</div>
</section>
<?php include("footer.php") ;?>
</body>
</html>