Files
moon-gaming/credits.html
T
2025-09-22 18:51:47 -05:00

61 lines
1.4 KiB
HTML

<html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fun Miles Credits</title>
<link rel="stylesheet" href="Credits.css">
</head>
<body> <div class="credits-container">
<h1>Credits</h1>
<div class="credits-list">
<div class="credit-item">
<h2>Owners</h2>
<p>Miles Allen/Robert Winberg</p>
</div>
<div class="credit-item">
<h2>Main Programers</h2>
<p>Miles Allen/Robert Winberg</p>
</div>
<div class="credit-item">
<h2>Game Testers</h2>
<p>all</p>
</div>
<div class="credit-item">
<h2>Accounting</h2>
<p>Noah Lindquist</p>
</div>
</div>
<button onclick="goBack()">Back</button>
</div> <script src="Credits.js"></script>
</body>
</html>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
.version {
position: fixed;
bottom: 10px;
right: 10px;
background-color: #f1f1f1;
padding: 5px 10px;
border-radius: 5px;
box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
font-family: Arial, sans-serif;
font-size: 14px;
}
</style>
</head>
<body>
<div class="version" id="versionDisplay"></div>
<script>
document.getElementById('versionDisplay').textContent = 'Version 2.44.0';
</script>
</body>
</html>