Advertisement
AndrewSD

comment

Feb 14th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Ссылка</title>
  6.     <style>
  7.         a{
  8.             text-decoration: none;
  9.             padding-left: 17px;
  10.         }
  11.         div{
  12.             width: 150px;
  13.             height: 20px;
  14.             border: 2px solid black;
  15.             border-radius: 10px;
  16.         }
  17.         div:hover{
  18.             background-color: beige;
  19.             box-shadow: 0 0 3px gray;
  20.         }
  21.         a:hover{
  22.             color: #ff8e4a;
  23.         }
  24.     </style>
  25. </head>
  26. <body>
  27.     <div>
  28.         <a href="https://www.hse.ru/">Комментировать</a>
  29.     </div>
  30. </body>
  31. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement