-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
76 lines (71 loc) · 4.77 KB
/
about.html
File metadata and controls
76 lines (71 loc) · 4.77 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>About Classic Old Games</title>
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="styles.css">
<style>
.about-content {
max-width: 800px;
margin: 0 auto;
padding: 20px;
line-height: 1.6;
}
.about-content ol {
text-align: left;
margin-left: 20px;
}
.about-content li {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<div class="header">
<h1><a href="index.html" style="text-decoration: none;">About Classic Old Games</a></h1>
</div>
<div class="about-content">
<p>
Hello! My name is Jordan DiPasquale.
I created this website to provide information about various classic games mostly from the late 90s and early 2000s.
This includes developers like id Software, Bungie, LucasArts and many others whose games I have enjoyed playing over the years.
It is meant to be a "hub" of sorts to provide general information and links to other sites for my favorite PC and console games.
So while the name is "Classic Old Games" it really is a resource for games in general.
On the homepage, games are intentionally sorted by their respective release dates to provide a historical view of the developer's works.
</p>
<p>
The design philosophy for this website is simple: Create a functional website about video games with minimal user tracking and an oldschool design aesthetic.
This means that JavaScript will only be allowed in a minimal form on this website (as much as reasonable).
Unfortunately, in regards to privacy, YouTube alternatives like Invidious are no longer working as well as I'd like since Google continues to change their algorithm in an attempt to prevent Invidious from functioning.
Additionally, Teddit, a privacy focused Reddit alternative, no longer exists thanks to Reddit's awful API policy.
As such, I have no choice but to link to these sites, though I will make an effort to warn the user before he clicks.
One last mention that while most of this site was written by me several years ago, I have since redesigned it with the help of Gab AI, which you can use for yourself here: <a href="https://gab.ai/" target="_blank" rel="noopener noreferrer">Gab AI</a>.
In an effort to be as transparent as possible, and to provide access for anyone to be able to modify this codebase, everything is available on GitHub here: <a href="https://github.com/jd-code76/classic-old-games" target="_blank" rel="noopener noreferrer">COG GitHub Codebase</a>.
The site itself is hosted by <a href="https://www.infinityfree.com/" target="_blank" rel="noopener noreferrer">Infinity Free</a>, which I highly recommend.
This codebase is licensed under the GPLv3, which you can read here: <a href="https://www.gnu.org/licenses/gpl-3.0.html" target="_blank" rel="noopener noreferrer">GPLv3 License</a>.
</p>
<p>
If you are looking for games, the following are fantastic resources.
<ol>
<li><a href="https://www.myabandonware.com" target="_blank" rel="noopener noreferrer">My Abandonware</a> - A great resource for obtaining older PC games that are no longer sold.</li>
<li><a href="https://hshop.erista.me" target="_blank" rel="noopener noreferrer">hShop</a> - The place to get any 3DS content, including themes.</li>
<li><a href="https://nopaystation.com" target="_blank" rel="noopener noreferrer">NoPayStation</a> - The place to get lots of PSX, PSP, PS Vita, or PS3 content.</li>
<li><a href="https://r-roms.github.io" target="_blank" rel="noopener noreferrer">r/ROMS Megathread</a> - An excellent compilation of video game preservation.</li>
<li><a href="https://vimm.net" target="_blank" rel="noopener noreferrer">Vimm's Lair</a> - One of the most comprehensive sources of video game preservation on the Internet.</li>
</ol>
</p>
</div>
</div>
<footer>
<hr>
All assets copyright their respective owners.<br>
Last updated on 12/27/2025.<br>
<a href="all_games.html">All Games</a><br>
<hr>
</footer>
</body>
</html>