Facebook
From dada, 5 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 215
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.   <head>
  4.     <!-- Required meta tags -->
  5.     <meta charset="utf-8" />
  6.     <meta
  7.       name="viewport"
  8.       content="width=device-width, initial-scale=1, shrink-to-fit=no"
  9.     />
  10.     <link rel="stylesheet" href="style.css" />
  11.     <!-- Bootstrap CSS -->
  12.     <link
  13.       rel="stylesheet"
  14.       href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css"
  15.       integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS"
  16.       crossorigin="anonymous"
  17.     />
  18.     <title>Hello, world!</title>
  19.     <script
  20.       src="https://code.jquery.com/jquery-3.3.1.js"
  21.       integrity="sha256-2Kok7MbOyxpgUVvAk/HJ2jigOSYS2auK4Pfzbm7uH60="
  22.       crossorigin="anonymous"
  23.     ></script>
  24.     <script>
  25.       $("#football--category").click(function() {
  26.         $("#football--menu").toggle();
  27.       });
  28.  
  29.       $("#hockey--category").click(function() {
  30.         $("#hockey--menu").toggle();
  31.       });
  32.     </script>
  33.   </head>
  34.   <body>
  35.     <div class="container">
  36.       <ul>
  37.         <li id="football--category">
  38.           Football
  39.           <ul style="display: none" id="football--menu">
  40.             <li>
  41.               - Poland
  42.               <ul>
  43.                 <li>-> Ekstraklasa</li>
  44.                 <li>-> I Liga</li>
  45.                 <li>-> II Liga</li>
  46.               </ul>
  47.             </li>
  48.             <li>
  49.               - Germany
  50.               <ul>
  51.                 <li>-> Bundesliga</li>
  52.                 <li>-> 2. Bundesliga</li>
  53.               </ul>
  54.             </li>
  55.           </ul>
  56.         </li>
  57.  
  58.         <li id="hockey--category">
  59.           Hockey
  60.           <ul style="display: none" id="hockey--menu">
  61.             <li>
  62.               - Germany
  63.               <ul>
  64.                 <li>-> DEL</li>
  65.                 <li>-> DEL 2</li>
  66.               </ul>
  67.             </li>
  68.             <li>
  69.               - Hungary
  70.               <ul>
  71.                 <li>-> Erste Liga</li>
  72.               </ul>
  73.             </li>
  74.           </ul>
  75.         </li>
  76.       </ul>
  77.     </div>
  78.     <!-- Optional JavaScript -->
  79.     <!-- jQuery first, then Popper.js, then Bootstrap JS -->
  80.  
  81.     <script
  82.       src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js"
  83.       integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut"
  84.       crossorigin="anonymous"
  85.     ></script>
  86.     <script
  87.       src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js"
  88.       integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k"
  89.       crossorigin="anonymous"
  90.     ></script>
  91.     <script src="script.js"></script>
  92.   </body>
  93. </html>
  94.