index.html 464 B

12345678910111213141516171819
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Javascript Beginner Projects: Rock Paper Scissors</title>
  5. <link rel="stylesheet" type="text/css" href="base.css">
  6. </head>
  7. <body>
  8. <div class="header">
  9. <span>Rock Paper Scissors Lizard Spock!</span>
  10. </div>
  11. <div class="container">
  12. <div id="score"></div>
  13. <div id="description"></div>
  14. <div id="selection" class="selection"></div>
  15. </div>
  16. <script src="main.js" type="module">
  17. </script>
  18. </body>
  19. </html>