TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> img:hover { transform: scale(1.1); transition: transform 0.3s; } </style> </head> <body> <img src="/img/lion.jpg" alt="Example Image" width="200"> </body> </html>