Advertisement
1xptolevitico69

Css google search logo

Aug 22nd, 2022
1,247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.97 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5.   <!-- Global site tag (gtag.js) - Google Analytics -->
  6.   <script async="" src="https://www.googletagmanager.com/gtag/js?id=G-420XFJRS1M"></script>
  7.   <script>
  8.     window.dataLayer = window.dataLayer || [];
  9.  
  10.     function gtag() {
  11.       dataLayer.push(arguments);
  12.     }
  13.     gtag('js', new Date());
  14.     gtag('config', 'G-420XFJRS1M');
  15.   </script>
  16.   <link rel="shortcut icon" href="https://1xpto.netlify.app/items/favicon.gif" type="image/x-icon">
  17.   <meta charset="UTF-8">
  18.   <meta http-equiv="X-UA-Compatible" content="IE=edge">
  19.   <meta name="keywords" content="Css google search logo">
  20.   <meta name="viewport" content="width=device-width, initial-scale=1.0">
  21.   <title>Css google search logo</title>
  22.   <style>
  23.  
  24.     .app {
  25.       font-size: 10px;
  26.       z-index: 1;
  27.       text-decoration: none;
  28.       font-family: verdana;
  29.       font-weight: bold;
  30.       color: red;
  31.       position: absolute;
  32.       top: 0;
  33.       right: 0;
  34.       margin: 5px;
  35.       border: 2px solid red;
  36.       padding: 5px 10px;
  37.     }
  38.  
  39.  
  40.  
  41.  
  42. body {
  43.   margin: 0;
  44.   font-family: calibri;
  45. }
  46. h1 {
  47.   text-align: center;
  48.   font-size: 7vw;
  49. }
  50.  
  51. .inputbox {
  52.   position: relative;
  53.   left: 25%;
  54.   width: calc(100% - 50%);
  55. }
  56. .searchlogo {
  57.   width: 100px;
  58.   height: 100px;
  59.   transform: rotate(-25deg);
  60.   transform-origin: center center;
  61.   margin: 50px auto;
  62. }
  63. .round {
  64.   position: absolute;
  65.   width: 100px;
  66.   height: 100px;
  67.   border: 5px solid red;
  68.   border-radius: 50%;
  69.   box-sizing: border-box;
  70. }
  71. .psiu {
  72.   position: absolute;
  73.   border: 5px solid red;
  74.   height: 50px;
  75.   background-color: red;
  76.   transform: translate(45px, 100px);
  77. }
  78.  
  79.  
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86. </style>
  87. </head>
  88. <body>
  89.   <a class='app' href='https://1xpto.netlify.app/'>Visite Site</a>
  90.  
  91.  
  92.  
  93. <h1>Google search Logo</h1>
  94.  
  95. <div class='inputbox'>
  96.   <div class='searchlogo'>
  97.     <div class='round'></div>
  98.     <div class='psiu'></div>
  99.   </div>
  100. </div>
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.   <script></script>
  108. </body>
  109. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement