Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>Dice Roll Game</title>
  6. </head>
  7. <body>
  8. <div id="container">
  9. <header>
  10. <h1>Dice Roller</h1>
  11. </header>
  12. <section id="content">
  13. <input id="roll-dice" type="button" value="Roll the Dice">
  14. <div class="dice" id="first-die">
  15. </div>
  16. <div class="dice" id="second-die">
  17. </div>
  18. </section>
  19. </div>
  20. <script type="text/javascript" src="js/app.js"></script>
  21. </body>
  22. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement