bubblepop.html
1    <!DOCTYPE html>
2    <html lang="en">
3    <head>
4      <meta charset="UTF-8">
5      <meta name="viewport" content="width=device-width, initial-scale=1">
6      <title>Bubble Pop</title>
7      <link href="bubblepop.css" rel="stylesheet" type="text/css">
8    </head>
9    <body>
10   <div id="header"><h1>Bubble Pop</h1></div>
11   <div id="field">
12     <button id="start" onclick="startGame()">Pop Bubbles!</button>
13   </div>
14   <div id="score"></div>
15   <script src="bubblepop.js"></script>
16   </body>
17   </html>
18   
19