FrontEnd-Development

Tic Tac Toe Game

📌 Overview

A classic Tic Tac Toe game implementation using HTML, CSS, and JavaScript. The game features a clean interface, player customization, and score tracking.


🚀 Features

🔸 Player Setup

🔸 Game Board

🔸 Game Logic

🔸 Controls


🎨 Visual Design


💾 Technical Implementation

// Game Matrix Structure
[
    ['a0', 'a1', 'a2'],
    ['b0', 'b1', 'b2'],
    ['c0', 'c1', 'c2']
]

// Win conditions checked:
- Horizontal rows
- Vertical columns
- Both diagonals

📁 File Structure

/Tic_Tac_Toe-Game
│
├── index.html    # Game structure and UI
├── style.css    # Visual styling
└── script.js    # Game logic

☁️ Live Demo

Try the game at: Tic Tac Toe Demo


✅ Technical Details