Search code examples
htmlhtml5-img

How can I get to add images to html5 code


I'm trying add the images to html5 code.

 <!DOCTYPE html>
<html>
<head>
<title> trying the code </title>
<body>
<h1> html code </h1>
<img src="YOUniverse-swati1.jpg"/>
</body>
</html>

Solution

  • Just by using the <img> tag - For Example-

    <img src="nature.jpg" alt="Nature" />
    

    Just make sure that the image name is correct & is placed in the same folder.