-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
81 lines (78 loc) · 4.13 KB
/
faq.html
File metadata and controls
81 lines (78 loc) · 4.13 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQ - Uni Folks Theater</title>
<link rel="icon" href="assets/img/logo.ico">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,400i,700,700i,600,600i">
</head>
<body>
<nav class="navbar navbar-dark navbar-expand-lg fixed-top clean-navbar" style="background-color: black;">
<div class="container"><a class="navbar-brand logo" href="index.html"><img src="assets/img/logo.png" width="67;" height="44"></a><button class="navbar-toggler" data-toggle="collapse" data-target="#navcol-1"><span class="sr-only">Toggle navigation</span><span class="navbar-toggler-icon"></span></button>
<div class="collapse navbar-collapse"
id="navcol-1">
<ul class="nav navbar-nav ml-auto">
<li class="nav-item" role="presentation"><a class="nav-link" href="forms/reserve.html">Reserve a Seat</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="forms/booking.html">Book Tickets</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="about-us.html">About</a></li>
<li class="nav-item" role="presentation"><a class="nav-link" href="contact-us.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<main class="page faq-page">
<nav aria-label="breadcrumb" >
<ol class="breadcrumb" style= "margin-top: 5px;">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item active" aria-current="page">FAQ</li>
</ol>
</nav>
<section class="clean-block clean-faq dark">
<div class="container">
<div class="block-heading">
<h2 class="text-info">FAQ</h2>
<p>Herein you may find answers to ticketing issues.</p>
</div>
<div class="block-content">
<div class="faq-item">
<h4 class="question">What information is required to complete the reservation?</h4>
<div class="answer">
<p>To complete a booking, you need to know the title of the play, payment information and details of individuals.</p>
<p>Finally, bank account details will be needed.</p>
</div>
</div>
<div class="faq-item">
<h4 class="question">What are the available payment methods?</h4>
<div class="answer">
<p>Tickets can be purchased through of our trusted online payments (Credit Card, VISA, Bitcoin) or by cash.</p>
</div>
</div>
<div class="faq-item">
<h4 class="question">Do customers have to pay online?</h4>
<div class="answer">
<p>Customers can also pay at the cashier and pick up their tickets.</p>
</div>
</div>
<div class="faq-item">
<h4 class="question">What about the childrens?</h4>
<div class="answer">
<p>Children up to 6yo are free of charge.</p>
</div>
</div>
</div><br>
<p style="text-align: center;">For any questions, please use the <a href="contact-us.html">contact form!</a></p>
</div>
</section>
</main>
<footer style="background-color: #222425; position: fixed; bottom: 0; width: 100%; color: white; text-align: center;">
<div class="footer-copyright" style="margin-top: 3px; margin-bottom: 3px;">
© 2018 Uni Folks
</div>
</footer>
<script src="assets/js/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/js/theme.js"></script>
</body>
</html>