|
| 1 | +<!DOCTYPE html> |
| 2 | +<html lang="en"> |
| 3 | +<head> |
| 4 | + <meta charset="UTF-8"> |
| 5 | + <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 6 | + <title>Releases</title> |
| 7 | + <link rel="icon" type="image/png" href="../img/GameReleases.png"> |
| 8 | + <style> |
| 9 | + body { |
| 10 | + font-family: 'Courier New', Courier, monospace; |
| 11 | + margin: 0; |
| 12 | + padding: 0; |
| 13 | + background-color: #1e1e1e; |
| 14 | + color: #dcdcdc; |
| 15 | + } |
1 | 16 |
|
| 17 | + header { |
| 18 | + background-color: #007396; /* Java blue */ |
| 19 | + color: #fff; |
| 20 | + padding: 20px 0; |
| 21 | + text-align: center; |
| 22 | + box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); |
| 23 | + } |
| 24 | + |
| 25 | + nav ul { |
| 26 | + list-style: none; |
| 27 | + padding: 0; |
| 28 | + display: flex; |
| 29 | + justify-content: center; |
| 30 | + } |
| 31 | + |
| 32 | + nav ul li { |
| 33 | + margin: 0 15px; |
| 34 | + } |
| 35 | + |
| 36 | + nav ul li a { |
| 37 | + color: #fff; |
| 38 | + text-decoration: none; |
| 39 | + font-weight: bold; |
| 40 | + transition: color 0.3s; |
| 41 | + } |
| 42 | + |
| 43 | + nav ul li a:hover { |
| 44 | + color: #ff5722; /* Highlight color */ |
| 45 | + } |
| 46 | + |
| 47 | + main { |
| 48 | + padding: 40px 20px; |
| 49 | + text-align: center; |
| 50 | + background-color: #2d2d2d; |
| 51 | + color: #dcdcdc; |
| 52 | + min-height: 60vh; |
| 53 | + } |
| 54 | + |
| 55 | + main h2 { |
| 56 | + font-size: 2.5em; |
| 57 | + margin-bottom: 10px; |
| 58 | + } |
| 59 | + |
| 60 | + main p { |
| 61 | + font-size: 1.2em; |
| 62 | + margin-bottom: 20px; |
| 63 | + } |
| 64 | + |
| 65 | + section { |
| 66 | + padding: 40px 20px; |
| 67 | + background-color: #333; |
| 68 | + border-radius: 10px; |
| 69 | + margin: 20px 0; |
| 70 | + box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); |
| 71 | + } |
| 72 | + |
| 73 | + footer { |
| 74 | + background-color: #007396; /* Java blue */ |
| 75 | + color: #fff; |
| 76 | + text-align: center; |
| 77 | + padding: 20px 0; |
| 78 | + position: relative; |
| 79 | + width: 100%; |
| 80 | + } |
| 81 | + |
| 82 | + footer p { |
| 83 | + margin: 0; |
| 84 | + } |
| 85 | + .download-link { |
| 86 | + color: #ff5722; |
| 87 | + text-decoration: none; |
| 88 | + font-weight: bold; |
| 89 | + display: inline-block; |
| 90 | + margin-top: 20px; |
| 91 | + padding: 10px 20px; |
| 92 | + border: 2px solid #ff5722; |
| 93 | + border-radius: 5px; |
| 94 | + transition: background-color 0.3s, color 0.3s, transform 0.3s; |
| 95 | + position: relative; |
| 96 | + overflow: hidden; |
| 97 | + } |
| 98 | + |
| 99 | + .download-link:hover { |
| 100 | + background-color: #ff5722; |
| 101 | + color: #fff; |
| 102 | + transform: scale(1.1); |
| 103 | + } |
| 104 | + </style> |
| 105 | +</head> |
| 106 | +<body> |
| 107 | + <header> |
| 108 | + <h1>Releases</h1> |
| 109 | + <nav> |
| 110 | + <ul> |
| 111 | + <li><a href="../../#home">Home</a></li> |
| 112 | + <li><a href="../../#about">About</a></li> |
| 113 | + <li><a href="../../#releases">Releases</a></li> |
| 114 | + <li><a href="../../Games/">Individual Games</a></li> |
| 115 | + </ul> |
| 116 | + </nav> |
| 117 | + </header> |
| 118 | + <main> |
| 119 | + <a name="v1.0"> |
| 120 | + <section> |
| 121 | + <h2>v1.0</h2> |
| 122 | + <a href="https://github.com/CodePearly/JavaGameStuff/releases/download/v1.0/v1.jar" target="_blank" class="download-link">Download the file for version 1.0</a> |
| 123 | + <p><a href="https://github.com/CodePearly/JavaGameStuff/releases/v1.0">Github page for version 1.0</a></p> |
| 124 | + <iframe src="iframe.html" width="500" height="255"></iframe> |
| 125 | + </section> |
| 126 | + </a> |
| 127 | + </main> |
| 128 | + <footer> |
| 129 | + <p>2025 <a href="https://github.com/CodePearly/JavaGameStuff/">JavaGameStuff</a>. Made by <a href="https://github.com/CodePearly/">CodePearly</a>. Code for this website found <a href="https://github.com/CodePearly/JavaGameStuff/tree/website">here on github</a></p> |
| 130 | + </footer> |
| 131 | + <script> |
| 132 | + document.addEventListener('DOMContentLoaded', () => { |
| 133 | + console.log('Games page is loaded!'); |
| 134 | + }); |
| 135 | + </script> |
| 136 | +</body> |
| 137 | +</html> |
0 commit comments