TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> a.button { display: inline-block; padding: 10px 20px; border: 2px solid red; color: red; text-decoration: none; border-radius: 5px; font-size: 16px; font-weight: bold; text-align: center; transition: background-color 0.3s ease, color 0.3s ease; } a.button:hover { background-color: red; color: white; } </style> </head> <body> <p><a href="https://www.example.com" class="button">Click Me</a></p> </body> </html>