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