Advertisement
Guest User

Untitled

a guest
Nov 18th, 2019
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  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.0">
  6. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7. <title>Click n Color</title>
  8. <link rel="stylesheet" href="css/styles.css">
  9. </head>
  10. <body>
  11. <div class="div1">
  12. <h1 class="timer">Timer:<p id="timer">60</p></h1>
  13. <h1 class="title">Click n Color Game!</h1>
  14. <h1 class = "score">Score:<p id="score">0</p></h1>
  15. <h1 class = "highScore">High Score:<p id="highScore"></p></h1>
  16. </div>
  17. <div id="shapes"></div>
  18. <script src="js/script.js"></script>
  19. </body>
  20. </html>
  21.  
  22. #shapes{
  23. position: absolute;
  24. background-color: grey
  25. }
  26.  
  27. .div1{
  28. display: flex;
  29. text-align: center;
  30. background-color: grey;
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement