Write an HTML program to create a simple webpage with a heading, a paragraph, and an image.
<!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <title>Simple Webpage</title> </head> <body> <h1>Welcome to My Simple Webpage</h1> <p>This is a paragraph describing my simple webpage. It contains a heading, a paragraph, and an image.</p> <img src=”image.jpg” alt=”Sample Image” width=”300″ height=”200″> </body> </html> This code creates a basic webpage with: A heading (<h1>). … Read more