Advertisement
Guest User

Untitled

a guest
Dec 15th, 2019
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.  
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Simon Game</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8.  
  9. <link href='https://fonts.googleapis.com/css?family=Original+Surfer&effect=emboss' rel='stylesheet' type='text/css'>
  10. <link rel="stylesheet" href="css/style.css">
  11.  
  12. <audio id="clip1">
  13. <source src="https://s3.amazonaws.com/freecodecamp/simonSound1.mp3"></source>
  14. </audio>
  15. <audio id="clip2">
  16. <source src="https://s3.amazonaws.com/freecodecamp/simonSound2.mp3"></source>
  17. </audio>
  18. <audio id="clip3">
  19. <source src="https://s3.amazonaws.com/freecodecamp/simonSound3.mp3"></source>
  20. </audio>
  21. <audio id="clip4">
  22. <source src="https://s3.amazonaws.com/freecodecamp/simonSound4.mp3"></source>
  23. </audio>
  24. </head>
  25.  
  26. <body>
  27.  
  28. <div id="outer-circle">
  29. <div id="topleft"></div>
  30. <div id="topright"></div>
  31. <div id="bottomleft"></div>
  32. <div id="bottomright"></div>
  33. <div id="inner-circle">
  34. <div id="title">Color game!</div>
  35. <div id="switches">
  36. <input type="checkbox" class="toggle" id="on">
  37. <button class="button" id="start">Start</button>
  38. <input type="checkbox" class="toggle" id="strict">
  39. </div>
  40. <div class="text1">
  41. <span>Ligar</span><span>STRICT</span>
  42. </div>
  43. <div id="turn"></div>
  44. <div class="text2">
  45. COUNT
  46. </div>
  47. </div>
  48. </div>
  49.  
  50. <script src="js/index.js"></script>
  51.  
  52. </body>
  53. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement