-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
44 lines (31 loc) · 1.54 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>About GeekyLibs</title>
<link rel="stylesheet" href="http://172.234.245.214/styles.css">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lobster&effect=shadow-multiple');
</style>
</head>
<body class="w3-light-grey">
<?php
require("menu.php");
?>
<div class="w3-container w3-green w3-center">
<h1 class="fira-code-header">GeekyLibs</h1>
<h2 class="fira-code-header">from <a href="https://fearlessgeekmedia.com" target="_blank">Fearless Geek Media</a></h2>
</div>
<div class="w3-container w3-padding-16">
<div class="w3-container w3-card-4 w3-light-grey w3-padding-16"
<h1>About GeekyLibs</h1>
GeekyLibs is developed by Fearless Geek Media - <sub>Will C</sub> PKA Will Michaels.
<img src="https://fearlessgeekmedia.com/images/fgm-logo.png" alt="Fearless Geek Media logo"/>
<p>This was developed with the assistance of AI while I was in a mental health residential treatment program.</p>
<p>This was inspired by Mad Libs, which is property of Penguin Random House, LLC. PKA Will Michaels and Fearless Geek Media are not associated with Penguin Random House. Furthermore, it was inpsired by a game that I played on my first computer when I was 12 years old.</p>
<p>You can financially support me on <a href="https://ko-fi.com/fearlessgeekmedia" target="_blank">Ko-Fi.</a>
</div>
</div>
</body>
</html>