Advertisement
Guest User

Teamspeak Link als Button

a guest
Jan 20th, 2021
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. .button {
  6.   border: none;
  7.   color: white;
  8.   padding: 16px 32px;
  9.   text-align: center;
  10.   text-decoration: none;
  11.   display: inline-block;
  12.   font-size: 16px;
  13.   margin: 4px 2px;
  14.   transition-duration: 0.4s;
  15.   cursor: pointer;
  16. }
  17.  
  18. .button1 {
  19.   background-color: white;
  20.   color: black;
  21.   border: 2px solid #4CAF50;
  22. }
  23.  
  24. .button1:hover {
  25.   background-color: #4CAF50;
  26.   color: white;
  27. }
  28.  
  29. </style>
  30. </head>
  31. <body>
  32.  
  33. <button class="button button1">Teamspeak
  34. <a href="ts3server://185.249.199.144/?port=9113" target="_blank"></a>
  35. </button>
  36.  
  37. </body>
  38. </html>
  39.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement