Advertisement
1xptolevitico69

JAVASCRIPT LOADER

Aug 27th, 2024
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.    <head>
  4.       <meta charset="UTF-8" />
  5.       <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6.       <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7.       <title>SETUP</title>
  8.       <style>
  9.  
  10.  
  11.          body {
  12.             margin: 0;
  13.          }
  14.  
  15.          * {
  16.             box-sizing: border-box;
  17.             font-family: arial black;
  18.          }
  19.  
  20.          .top {
  21.             width: 100%;
  22.             height: 100vh;
  23.             border: 0;
  24.             outline: 0;
  25.             background-color: white;
  26.          }
  27.  
  28.          .search {
  29.             margin: 20px;
  30.             outline: 3px solid red;
  31.             font-size: 20px;
  32.             padding: 0 30px;
  33.             text-align: center;
  34.             border: 2px solid white;
  35.             color: red;
  36.             background-color: red;
  37.             color: white;
  38.          }
  39.  
  40.          @media (orientation: portrait) and (max-width:425px){
  41.  
  42.             h1 {
  43.                font-size: 20px;
  44.             }
  45.          }
  46.  
  47.          @media (orientation: landscape) and (max-width: 640px) {
  48.             h1 {
  49.                font-size: 20px;
  50.             }
  51.          }
  52.  
  53.       </style>
  54.    </head>
  55.  
  56.    <body>
  57.  
  58.       <button class="top">
  59.  
  60.          <h1>JAVASCRIPT LOADER</h1>
  61.  
  62.          <input class="search" onclick="Web()" type="button" value="HTML" />
  63.       </button>
  64.  
  65.       <script>
  66.  
  67.          function Web() {
  68.             window.open("https://1xpto.netlify.app/articles/javascript%20loader/", "_self");
  69.          }
  70.  
  71.       </script>
  72.    </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement