Premium Gaming Solutions

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

PUZZLE

Classic number puzzle. Fill grid so every row, column and 3x3 box contains 1-9.

Multiple Levels Hint System Timer Error Checking

Solitaire Master

CARD

Classic card sorting game. Move all cards to foundation piles in ascending order.

Klondike Rules Undo Feature Auto-Complete Scoring System

Chess Challenge

STRATEGY

Classic chess game with AI opponent. Multiple difficulty levels and move analysis.

AI Opponent 3 Difficulty Levels Move History Hint System

Word Search Pro

WORD

Find hidden words in letter grids. Multiple categories and difficulty levels.

Multiple Categories 3 Difficulty Levels Hint System Scoring

Memory Match

PUZZLE

Test your memory by matching pairs of cards. Multiple difficulty levels.

Multiple Levels Timer Score System Different Themes

Crossword Puzzles

WORD COMING SOON

Daily crossword puzzles with clues. Perfect for word game enthusiasts.

Daily Puzzles Hint System Auto-Check Themed

How to Add New Games

1

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>
2

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 theme
  • fas fa-icon: FontAwesome icon class
  • Game Name: Your game's name
  • CATEGORY: Uppercase category name
  • href: Path to your HTML file in /games/ folder
3

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!

Repository Structure:
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

Filter by Category