blob: c1338e78f17d2a47cab67367a09f445fe047bba1 (
plain)
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
|
<?php $title = "Frequently Asked Questions"; require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/header.php"; ?>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/navigation.php"; ?>
<br>
<div class="container">
<h1>Frequently Asked Questions</h1>
<div class="row">
<div class="col-lg">
<details class="faq-container">
<summary>Do you provide free hosting?</summary>
<hr class="faq-separator">
<p>
Yes. When I create a website for you, free hosting and maintenance is included for as long as your website is being developed and as long as possible. However, if your website receives a lot of traffic, it is recommended that you move to proper hosting.
</p>
</details>
</div>
<div class="col-lg">
<details class="faq-container">
<summary>Can you create for someone else?</summary>
<hr class="faq-separator">
<p>
Yes, although this only applies to people I know and trust; and may be limited depending on my motivation and free time. If we are friends, feel free to ask if you want a website.
</p>
</details>
</div>
</div>
</div>
<?php require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/footer.php"; ?>
|