118 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			118 lines
		
	
	
	
		
			3.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <title>Secret Game Collection</title>
 | |
|     <link rel="stylesheet" href="styles.css" />
 | |
|     <link
 | |
|       rel="apple-touch-icon"
 | |
|       sizes="180x180"
 | |
|       href="../favicon_io/apple-touch-icon.png"
 | |
|     />
 | |
|     <link
 | |
|       rel="icon"
 | |
|       type="image/png"
 | |
|       sizes="32x32"
 | |
|       href="../favicon_io/favicon-32x32.png"
 | |
|     />
 | |
|     <link
 | |
|       rel="icon"
 | |
|       type="image/png"
 | |
|       sizes="16x16"
 | |
|       href="../favicon_io/favicon-16x16.png"
 | |
|     />
 | |
|     <link rel="manifest" href="../favicon_io/site.webmanifest" />
 | |
|   </head>
 | |
|   <body>
 | |
|     <header>
 | |
|       <h1>Secret Game Collection</h1>
 | |
|     </header>
 | |
| 
 | |
|     <main>
 | |
|       <div class="grid-container">
 | |
|         <a
 | |
|           href="asteroidDestroyer/explenation.html"
 | |
|           target="_blank"
 | |
|           class="item"
 | |
|         >
 | |
|           <img src="images/asteroid.png" alt="Image can't be displayed" />
 | |
|           <h2>Secret Asteroid Shooter</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               In this game, you control a spaceship that shoots at asteroids to
 | |
|               avoid destruction and collect items for power-ups.
 | |
|             </p>
 | |
|             <p>
 | |
|               Your goal is to survive as long as possible while scoring points!
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="#" target="_blank" class="item">
 | |
|           <img src="images/default.jpeg" alt="Image can't be displayed" />
 | |
|           <h2>Secret Blackjack</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               Try to beat the dealer by getting a hand value as close to 21 as
 | |
|               possible without going over.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="#" target="_blank" class="item">
 | |
|           <img src="images/default.jpeg" alt="Image can't be displayed" />
 | |
|           <h2>Snake</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               Guide the snake to eat food and grow longer while avoiding
 | |
|               collisions with the walls and itself.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="#" target="_blank" class="item">
 | |
|           <img src="images/default.jpeg" alt="Image can't be displayed" />
 | |
|           <h2>Solitaire</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               A classic card game where the objective is to move all cards to
 | |
|               foundation piles in ascending order.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="mineSweeper/index.html" target="_blank" class="item">
 | |
|           <img src="images/minesweeper.png" alt="Image can't be displayed" />
 | |
|           <h2>Minesweeper</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               Uncover squares on a grid while avoiding hidden mines, using
 | |
|               numbers to deduce safe spots.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="guessMyNumber/index.html" target="_blank" class="item">
 | |
|           <img src="images/number.jpeg" alt="Image can't be displayed" />
 | |
|           <h2>Guess My Number</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               A simple game where you try to guess a randomly chosen number
 | |
|               within a certain range.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|         <a href="#" target="_blank" class="item">
 | |
|           <img src="images/default.jpeg" alt="Image can't be displayed" />
 | |
|           <h2>Endless Runner</h2>
 | |
|           <div class="description">
 | |
|             <p>
 | |
|               Run through an endless landscape, avoiding obstacles and
 | |
|               collecting items to score points.
 | |
|             </p>
 | |
|           </div>
 | |
|         </a>
 | |
|       </div>
 | |
|     </main>
 | |
| 
 | |
|     <footer>
 | |
|       <p>© 2025 Game Collection</p>
 | |
|     </footer>
 | |
|   </body>
 | |
| </html>
 |