Game Collection 0 Games
Welcome to M.V. Electronix gaming portal. All games are standalone HTML files that work directly in your browser. No installation required!
Available Games
Click any game to play. All games work in browser - no downloads needed!
Sudoku Master
PUZZLEClassic number puzzle. Fill grid so every row, column and 3x3 box contains 1-9.
Solitaire Master
CARDClassic card sorting game. Move all cards to foundation piles in ascending order.
Chess Challenge
STRATEGYClassic chess game with AI opponent. Multiple difficulty levels and move analysis.
Word Search Pro
WORDFind hidden words in letter grids. Multiple categories and difficulty levels.
Memory Match
PUZZLETest your memory by matching pairs of cards. Multiple difficulty levels.
Crossword Puzzles
WORD COMING SOONDaily crossword puzzles with clues. Perfect for word game enthusiasts.
How to Add New Games
Copy the Game Card Template
Find the template in index.html (commented section). Copy the entire HTML block.
<!-- Game Card Template -->
<div class="game-card" data-category="category">
<div class="game-header" style="border-color: #COLOR;">
<i class="fas fa-icon game-icon" style="color: #COLOR;"></i>
<h3>Game Name</h3>
<span class="game-category">CATEGORY</span>
</div>
<div class="game-content">
<p>Game description here.</p>
<div class="game-features">
<span>Feature 1</span>
<span>Feature 2</span>
<span>Feature 3</span>
</div>
<div class="game-footer">
<div class="game-info">
<span><i class="fas fa-star"></i> 4.5/5</span>
<span><i class="fas fa-users"></i> 1K+</span>
</div>
<a href="games/game.html" class="play-btn">PLAY NOW</a>
</div>
</div>
</div>
Paste and Customize
Paste the template where you want the game to appear. Update these values:
data-category: puzzle, card, strategy, or word#COLOR: Any hex color for themefas fa-icon: FontAwesome icon classGame Name: Your game's nameCATEGORY: Uppercase category namehref: Path to your HTML file in/games/folder
Create Game HTML File
Create your game as a standalone HTML file in the /games/ folder.
Your game should work directly when opened in browser. No server needed!
mv-electronix-games/ ├── index.html (This homepage) ├── style.css (Optional external styles) ├── games/ (Game files go here) │ ├── sudoku.html │ ├── solitaire.html │ ├── chess.html │ └── your-game.html └── README.md