Spaces:
Running
Running
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>About - Wormate.io Clone</title> | |
| <link rel="stylesheet" href="style.css"> | |
| <script src="components/wormate-nav.js"></script> | |
| <script src="components/game-footer.js"></script> | |
| <style> | |
| @import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap'); | |
| </style> | |
| </head> | |
| <body> | |
| <wormate-nav></wormate-nav> | |
| <main class="about-container"> | |
| <h1>About Wormate.io Clone</h1> | |
| <section class="about-section"> | |
| <h2>The Game</h2> | |
| <p>This is a fan-made clone of the popular online multiplayer game Wormate.io where you control a worm and try to grow as large as possible by eating food while avoiding other players.</p> | |
| <img src="http://static.photos/gaming/640x360/1" alt="Gameplay screenshot"> | |
| </section> | |
| <section class="about-section"> | |
| <h2>How to Play</h2> | |
| <ul class="game-instructions"> | |
| <li>Use arrow keys to control your worm</li> | |
| <li>Eat colored food pellets to grow longer</li> | |
| <li>Avoid crashing into walls or other worms</li> | |
| <li>Compete for the highest score on the leaderboard</li> | |
| </ul> | |
| </section> | |
| <section class="about-section"> | |
| <h2>Features</h2> | |
| <div class="features-grid"> | |
| <div class="feature-card"> | |
| <h3>Multiplayer</h3> | |
| <p>Play against real opponents worldwide</p> | |
| </div> | |
| <div class="feature-card"> | |
| <h3>Custom Skins</h3> | |
| <p>Personalize your worm's appearance</p> | |
| </div> | |
| <div class="feature-card"> | |
| <h3>Leaderboards</h3> | |
| <p>Track top players globally</p> | |
| </div> | |
| </div> | |
| </section> | |
| </main> | |
| <game-footer></game-footer> | |
| <script src="script.js"></script> | |
| </body> | |
| </html> |