Advertisement
Guest User

Untitled

a guest
Jun 18th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.68 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6.     <meta http-equiv="X-UA-Compatible" content="ie=edge">
  7.     <title>Document</title>
  8.     <style>
  9.         a {
  10.             display: inline-block;
  11.             padding: 2rem;
  12.             margin: 1rem;
  13.             background: royalblue;
  14.             color: white;
  15.             text-decoration: none;
  16.             border-radius: 25px;
  17.  
  18.             transition: all 1s ease-in-out;
  19.         }
  20.  
  21.         a:hover {
  22.             background: red;
  23.         }
  24.     </style>
  25. </head>
  26. <body>
  27.     <a href="#">Hey, Bang me so hard!</a>
  28. </body>
  29. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement