<html> <head> <link rel="stylesheet" href="index.css"> </head> <body> <h1>Blackjack</h1> <p id="message-el">Want to play a round?</p> <p>Cards:</p> <p>Sum:</p> <!-- 1. Create a button that says START GAME. Make it call a startGame() function when clicked --> <script src="index.js"></script> </body> </html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<html>
<head>
<linkrel="stylesheet"href="index.css">
</head>
<body>
<h1>Blackjack</h1>
<pid="message-el">Want to play a round?</p>
<p>Cards:</p>
<p>Sum:</p>
<!-- 1. Create a button that says START GAME.
Make it call a startGame() function when clicked -->