Posts

Tic-Tac-Toe ka coding

 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>0X Game (Tic-Tac-Toe)</title> <style>     body {         font-family: Arial, sans-serif;         text-align: center;         margin: 0;         background: #f4f4f4;     }     h1 {         color: #333;     }     .board {         display: grid;         grid-template-columns: repeat(3, 100px);         grid-template-rows: repeat(3, 100px);         gap: 5px;         justify-content: center;         margin: 20px auto;     }     .cell {         display: flex;         align-items...