-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfaq.php
103 lines (86 loc) · 3.97 KB
/
faq.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
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
<?php
include("connect.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About - Tech2Check</title>
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<meta content="" name="keywords">
<meta content="" name="description">
<!-- Fav and touch icons -->
<link rel="shortcut icon" href="img/logo.png" type="image/png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="img/icons/114x114.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="img/icons/72x72.png">
<link rel="apple-touch-icon-precomposed" href="img/icons/default.png">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700,900" rel="stylesheet">
<!-- Bootstrap CSS File -->
<link href="lib/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<!-- Libraries CSS Files -->
<link href="lib/font-awesome/css/font-awesome.min.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.carousel.min.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.theme.min.css" rel="stylesheet">
<link href="lib/owlcarousel/owl.transitions.min.css" rel="stylesheet">
<!-- Main Stylesheet File -->
<link href="css/style.css" rel="stylesheet">
</head>
<!-- ======== @Region: body ======== -->
<body>
<div id="background-wrapper" class="buildings" data-stellar-background-ratio="0.8">
<!-- ======== @Region: header ======== -->
<?php
include("navbar.php");
?>
</div>
<!-- ======== @Region: #content ======== -->
<div class="mission text-center block block-pd-sm block-bg-noise">
<div class="container">
<h1 class ="text-shadow-white">
Frequently Asked Questions
<br>
<h3 class="text-primary"><b>How much does it cost to rent?</b></h3>
Rentals are FREE to staff and students.
<br>
<h3 class="text-primary"><b>How current is your technology?</b></h3>
We have the latest in technology equipment. Shortly after a new technology becomes available to consumers, we can offer it for rental.
<br>
<h3 class="text-primary"><b>How long can I rent for?</b></h3>
You can rent for one, three, or five days. We specialize in renting for short term needs and events.
<br>
<h3 class="text-primary"><b>Why rent technology?</b></h3>
Get the latest technology for your needs instead of purchasing equipment that you will only need for a short term.
<br>
<h3 class="text-primary"><b>Can a technician show me how to use the equipment?</b></h3>
Yes! We have trained staff members that will gladly show you how to use the equipment upon request.
<br>
<h3 class="text-primary"><b>Are the computers tested before being checked out?</b></h3>
All of our machines are tested, cleaned and virus-free. All machines are up to date with a fresh load of the latest OS.
<br>
<h3 class="text-primary"><b>Can I extend my rental?</b></h3>
Equipment may be extended for a duration beyond the original rental period up to an additional five days. Equipment not returned on time or delayed may result in additional fees.
<br>
</h2>
</div>
</div>
<!-- ======== @Region: #footer ======== -->
<?php
include("footer.php");
?>
<!-- Required JavaScript Libraries -->
<script src="lib/jquery/jquery.min.js"></script>
<script src="lib/bootstrap/js/bootstrap.min.js"></script>
<script src="lib/owlcarousel/owl.carousel.min.js"></script>
<script src="lib/stellar/stellar.min.js"></script>
<script src="lib/waypoints/waypoints.min.js"></script>
<script src="lib/counterup/counterup.min.js"></script>
<script src="contactform/contactform.js"></script>
<!-- Template Specisifc Custom Javascript File -->
<script src="js/custom.js"></script>
<!--Custom scripts demo background & colour switcher - OPTIONAL -->
<script src="js/color-switcher.js"></script>
<!--Contactform script -->
<script src="contactform/contactform.js"></script>
</body>
</html>