-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfaq.php
35 lines (34 loc) · 1.34 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
<!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.0">
<title>FAQ</title>
<style>
body {
text-align: center;
font: 1em sans-serif;
}
</style>
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<nav>
<a href="/">Home</a>
<a href="faq.php">FAQ</a>
<a href="about.php">About</a>
<a href="contactme.php">Contact Me</a>
<a href="support.php">Support</a>
<a href="profile.php">Profile</a>
</nav>
<h2 class="faq-question">What is This?</h2>
<p class="faq-answer">This is my PHP Systems. That I have created from scratch.</p>
<h2 class="faq-question">How Long You've been working on it?</h2>
<p class="faq-answer">it Took me 2 weeks to finish it. but in total it only Took me 6 hours.</p>
<h2 class="faq-question">What are you Running on?</h2>
<p class="faq-answer">I'm Running it on LAMP Stack. (Linux Apache MYSQL PHP)</p>
<h2 class="faq-question">Which PHP Version it is Running on?</h2>
<p class="faq-answer">PHP Version 7.4.3. Why No Version 8? Because the system is not working with PHP Version 8 + PHP Version 7.4.3 is not PHP 5. So it's Fine. I'm Not Very Far Behind/Outdated.</p>
</body>
</html>