Advertisement
1xptolevitico69

Blink animation - Css essay

Oct 6th, 2024
19
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.85 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></title>
  8.       <style>
  9.          body {
  10.             margin: 0;
  11.          }
  12.  
  13.          * {
  14.             box-sizing: border-box;
  15.          }
  16.  
  17.          .top {
  18.             width: 100%;
  19.             height: 100vh;
  20.             border: 0;
  21.             outline: 0;
  22.             background-color: white;
  23.          }
  24.  
  25.          .top a {
  26.             display: block;
  27.             margin: 30px 0;
  28.          }
  29.  
  30.          .top input {
  31.             display: inline-block;
  32.             margin: 1px;
  33.          }
  34.  
  35.          h1 {
  36.             margin: 0 0 40px 0 ;
  37.          }
  38.  
  39.          .search {
  40.             padding: 5px 0;
  41.             outline: none;
  42.             font-size: 20px;
  43.             font-weight: bold;
  44.             width: 150px;
  45.             text-align: center;
  46.             border: none;
  47.             color: red;
  48.             background-color: red;
  49.             color: white;
  50.          }
  51.  
  52.       </style>
  53.    </head>
  54.  
  55.    <body>
  56.  
  57.       <button class="top">
  58.  
  59.          <a href="https://1xpto.netlify.app/traffic"><img src='https://1xpto.netlify.app/image/visite.png'/></a>
  60.  
  61.          <h1>Blink animation - Css essay</h1>
  62.  
  63.          <input class="search" onclick="Style()" type="button" value="Src Code" />
  64.          <input class="search" onclick="web()" type="button" value="HTML" />
  65.       </button>
  66.  
  67.       <script>
  68.          function Style() {
  69.             window.open("https://1xpto.netlify.app/articles/css%20blink%20essay/local/index.txt", "_self");
  70.          }
  71.  
  72.          function web() {
  73.             window.open("https://1xpto.netlify.app/articles/css%20blink%20essay/local/", "_self");
  74.          }
  75.       </script>
  76.    </body>
  77. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement