Home
HTML
Basic HTML Tags
Example 5: Basic HTML Tags
Run ❯❯
<!DOCTYPE html> <html> <body> <p>In this example we have an image with width 200px and height 200px.</p> <img src="chromelogo.png" alt="Chrome Logo" width="200" height="200"> </body> </html>