mirror of
https://github.com/izzy2lost/PSX2.git
synced 2026-03-26 16:39:18 -07:00
95 lines
2.8 KiB
HTML
95 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PSX2 - PlayStation 2 Emulator</title>
|
|
<style>
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 2rem;
|
|
line-height: 1.6;
|
|
background-color: #f8f9fa;
|
|
}
|
|
.container {
|
|
background: white;
|
|
padding: 2rem;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
}
|
|
.header {
|
|
text-align: center;
|
|
margin-bottom: 2rem;
|
|
}
|
|
.header h1 {
|
|
color: #333;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
.header p {
|
|
color: #666;
|
|
font-size: 1.2rem;
|
|
}
|
|
.links {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 1rem;
|
|
justify-content: center;
|
|
margin: 2rem 0;
|
|
}
|
|
.link-button {
|
|
display: inline-block;
|
|
padding: 0.75rem 1.5rem;
|
|
background-color: #007bff;
|
|
color: white;
|
|
text-decoration: none;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s;
|
|
}
|
|
.link-button:hover {
|
|
background-color: #0056b3;
|
|
}
|
|
.link-button.secondary {
|
|
background-color: #6c757d;
|
|
}
|
|
.link-button.secondary:hover {
|
|
background-color: #545b62;
|
|
}
|
|
.description {
|
|
margin: 2rem 0;
|
|
color: #555;
|
|
}
|
|
.footer {
|
|
text-align: center;
|
|
margin-top: 2rem;
|
|
padding-top: 2rem;
|
|
border-top: 1px solid #eee;
|
|
color: #666;
|
|
font-size: 0.9rem;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header">
|
|
<h1>PSX2</h1>
|
|
<p>PlayStation 2 Emulator for Mobile</p>
|
|
</div>
|
|
|
|
<div class="description">
|
|
<p>PSX2 is a powerful PlayStation 2 emulator that allows you to play your favorite PS2 games on mobile devices. Experience classic gaming with enhanced performance and modern convenience.</p>
|
|
</div>
|
|
|
|
<div class="links">
|
|
<a href="https://github.com/izzy2lost/PSX2" class="link-button">View on GitHub</a>
|
|
<a href="privacy-policy.html" class="link-button secondary">Privacy Policy</a>
|
|
</div>
|
|
|
|
<div class="footer">
|
|
<p>© 2025 PSX2. Licensed under GPL-3.0.</p>
|
|
<p>Contact: <a href="mailto:izzynochill@gmail.com">izzynochill@gmail.com</a></p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |