Simple browser-based Blackjack game (vanilla HTML/CSS/JavaScript).
This is a small learning project that implements a playable Blackjack (21) game using only static files.
index.html- Main page to load the game.index.js- Game logic and UI interaction (vanilla JavaScript).index.css- Styling for the game UI.table.png- Decorative image used by the UI.
- Clone or copy the project folder to your machine.
 - Open 
index.htmlin a web browser (Chrome, Edge, or Firefox). 
On Windows you can open it from PowerShell with:
Start-Process index.htmlOr just double-click the index.html file in File Explorer.
- The goal is to reach a hand value as close to 21 as possible without going over.
 - Use the UI buttons to "Hit" (take a card) or "Stand" (end your turn).
 - The dealer will play automatically after you stand. The winner is determined by standard Blackjack rules.
 
- This is a static front-end project—no build tools or server required.
 - To make changes, edit 
index.jsandindex.css, then reloadindex.htmlin your browser.