-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfaq.html
More file actions
104 lines (91 loc) · 3.29 KB
/
faq.html
File metadata and controls
104 lines (91 loc) · 3.29 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
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
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta property="og:title" content="PS1 Classics - FAQ" />
<meta property="og:description" content="FAQ about PS1 emulation on PS3." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://ps3classics.github.io/ps1/faq.html" />
<meta property="og:image" content="https://ps3classics.github.io/ps1/icon.png" />
<title>PS1 Classics - FAQ</title>
<style>
body {
margin: 0;
font-family: Arial, sans-serif;
color: #fff;
background: linear-gradient(-45deg, #440000, #532c00, #1b0707, #702121);
background-size: 600% 600%;
animation: gradientShift 20s ease infinite;
min-height: 100vh;
display: flex;
flex-direction: column;
}
@keyframes gradientShift {
0% { background-position: 0% 50%; }
50% { background-position: 100% 50%; }
100% { background-position: 0% 50%; }
}
nav {
background-color: rgba(0, 0, 0, 0.6);
display: flex;
justify-content: left;
padding: 1rem;
position: sticky;
top: 0;
}
nav a {
color: #fff;
margin: 0 1rem;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.container {
flex: 1;
padding: 2rem;
max-width: 800px;
margin: auto;
}
h1 {
text-align: center;
margin-bottom: 2rem;
text-shadow: 0 0 8px rgba(0,0,0,0.4);
}
h2 {
margin-top: 1.5rem;
}
footer {
background-color: rgba(0, 0, 0, 0.6);
text-align: center;
padding: 1rem;
font-size: 0.8rem;
}
</style>
</head>
<body>
<nav>
<a href="index.html">Home</a>
<a href="faq.html">FAQ</a>
<a href="compatibility.html">Compatibility</a>
<a href="https://ps3classics.github.io/ps2">PS2</a>
<a href="https://ps3classics.github.io/psp">PSP</a>
</nav>
<div class="container">
<h1>Frequently Asked Questions</h1>
<h2>What is this site?</h2>
<p>This website aims to be the definitive resource for PS1 emulation on PS3.<br>Our focus is "PS1 Classics", the software emulator available for all PS3 models.</p>
<h2>Where does the data come from?</h2>
<p>Compatibility info is currently obtained from the <a href="https://www.psdevwiki.com/ps3/PS1_Classics_Emulator_Compatibility_List" style="color:#fff">PS3 Developer Wiki</a> compatibility list.</p>
<h2>Will this work on any PS3?</h2>
<p>Yes. Sony developed a PS1 emulator for "PS1 Classics" called "ps1_netemu". It is entirely software emulated and works on any model. Technical information and comparisons are also available on <a href="https://www.psdevwiki.com/ps3/PS1_Emulation" style="color:#fff">PS3 Developer Wiki</a>.</p>
<h2>How can I contribute?</h2>
<p>If a game works perfectly, you may edit the Wiki directly.<br>If you test an untested game and discover it has issues, add it to the Wiki and open an issue via the <a href="https://github.com/ps3classics/ps1" style="color:#fff">GitHub repository</a>.</p>
</div>
<footer>
Part of the PS3 Classics Project · <a href="https://github.com/ps3classics" style="color:#fff">GitHub</a>
</footer>
</body>
</html>