mirror of
https://github.com/izzy2lost/izzy2lost.com.git
synced 2026-06-19 01:16:11 -07:00
39 lines
991 B
HTML
39 lines
991 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>PSX2 ยท izzy2lost</title>
|
|
<link rel="stylesheet" href="style.css">
|
|
</head>
|
|
<body class="crt-off">
|
|
<canvas id="starfield"></canvas>
|
|
|
|
<div class="crt-toggle">
|
|
<label>
|
|
<input type="checkbox" id="crtSwitch">
|
|
<span></span>
|
|
<span>CRT Mode</span>
|
|
</label>
|
|
</div>
|
|
|
|
<header class="navbar">
|
|
<a href="index.html" class="back">❮ Back</a>
|
|
</header>
|
|
|
|
<main class="project-page">
|
|
<img src="assets/psx2.png" class="project-icon-large">
|
|
<h1>PSX2</h1>
|
|
<p>Android ARM64 PS2 emulator project.</p>
|
|
|
|
<div class="project-links">
|
|
<a href="https://play.google.com/store/apps/details?id=com.izzy2lost.psx2" class="btn primary">Google Play</a>
|
|
<a href="https://github.com/izzy2lost/PSX2/releases" class="btn ghost">GitHub Releases</a>
|
|
</div>
|
|
</main>
|
|
|
|
<script src="script.js"></script>
|
|
<script src="starfield.js"></script>
|
|
</body>
|
|
</html>
|