Advertisement
AndrewSD

Untitled

Jan 23rd, 2017
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.48 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>Кнопка</title>
  6.     <style>
  7.         button:hover{
  8.             background-color: linen;
  9.             color: red;
  10.             box-shadow: 0 0 5px grey;
  11.         }
  12.         button{
  13.             width: 115px;
  14.             height: 35px;
  15.             border-radius: 5px;
  16.             background-color: white;
  17.         }
  18.     </style>
  19. </head>
  20. <body>
  21. <button>Комментировать</button>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement