Advertisement
Crazykk1449

Demon Records (From Scratch)

Oct 16th, 2017
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.96 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.   <title>Bootstrap Example</title>
  5.   <meta charset="utf-8">
  6.   <meta name="viewport" content="width=device-width, initial-scale=1">
  7. <link rel="stylesheet" href="https://www.w3schools.com/w3css/3/w3.css">
  8. </head>
  9. <body>
  10.  
  11. <style>
  12. #recordTag {
  13.     padding-top: 10px;
  14.     padding-left: 15px;
  15. }
  16. #records {
  17.     padding-top: 10px;
  18.     padding-left: 15px;
  19. }
  20. </style>
  21.  
  22. <div>
  23.     <p id="recordTag"><u>Records</u></p>
  24. </div>
  25.  
  26. <div class="w3-container">
  27.   <a class="w3-btn w3-black" role="button" onclick="toggleRecords()">Toggle Records</a>
  28. </div>
  29.  
  30. <div id="records">
  31. <strong>Player</strong> - 100% - <a href="https://www.youtube.com" target="_blank">View Video</a><br>
  32. </div>
  33.  
  34. <script>
  35. function toggleRecords() {
  36.     var x = document.getElementById("records");
  37.     if (x.style.display === "none") {
  38.         x.style.display = "block";
  39.     } else {
  40.         x.style.display = "none";
  41.     }
  42. }
  43. </script>
  44.  
  45. </body>
  46. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement