I originally wanted to render the different parts of the game across the screen horizontally but had issues making the CSS grid work in the way I wanted it to.
I switched to a Flexbox column layout and decided to display things vertically.
- HTML
- CSS
- Javascript (vanilla)
- (https://mlisdev.github.io/js-blackjack-project/)
- On page load, the game will distribute and sum the 2 cards to you and the dealer.
- Based on the scores, decide if you want to "hit" your hand or "stay."
- Once you make your choice, the game will declare a winner.
- Remember: in Black Jack, you want to try and beat the dealer by getting as close to 21 without going over, AND scoring higher than the dealer.
- Render one of the dealer's cards upside down and with a secret value.
- Improve upon CSS and HTML layout.
- Include the ability to make bets on the hands before choosing hit or stay.
- Make buttons invisible on render and have them show up only after hand dealt.