Home
HTML
HTML Images
Example 8: HTML Images
Run ❯❯
<!DOCTYPE html> <html> <head> <title>HTML Image Size Example</title> </head> <body> <h1>HTML Image Size</h1> <img src="aloevera.jpg" alt="An Image of Aloe Vera Plant" style="width:400px;height:500px;"> <p>Using the style attribute we have set the width of the image to 400px and height to 500 px.</p> </body> </html>