Advertisement
Csbr456

PHP&CSS gomb

Sep 24th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. PHP kód: (index.php)
  2.  
  3. <html>
  4. <head>
  5. <title>Gomb</title>
  6. <link href="style.css" rel="stylesheet">
  7. </head>
  8.  
  9. <body>
  10. <center>
  11. <a href="http://google.hu" class="link">Google</a>
  12. </center>
  13. </body>
  14. </html>
  15.  
  16. CSS kód: (style.css)
  17.  
  18. .link {
  19. background-color: #7b90b2;
  20. color: #323335;
  21. border: 3px solid black;
  22. font-size: 25px;
  23. text-decoration: none;
  24. }
  25.  
  26. .link:hover {
  27. background-color: #7b90b2;
  28. color: #323335;
  29. border: 5px solid black;
  30. font-size: 30px;
  31. text-decoration: none;
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement