12345678910111213141516171819 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Javascript Beginner Projects: Rock Paper Scissors</title>
- <link rel="stylesheet" type="text/css" href="base.css">
- </head>
- <body>
- <div class="header">
- <span>Rock Paper Scissors Lizard Spock!</span>
- </div>
- <div class="container">
- <div id="score"></div>
- <div id="description"></div>
- <div id="selection" class="selection"></div>
- </div>
- <script src="main.js" type="module">
- </script>
- </body>
- </html>
|