Monday, April 13, 2020

How to insert images in HTML ?

<!DOCTYPE html>

<html>
    <head>
        <meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
        <title>Hello, World!</title>
    </head>
    <body>
        <h1>
            Hello, World!
        </h1>
        Here we will learn how to insert image into a webpage.Here we can also specify its height and width .
    Here  img tag is used for image with height and width as its attributes.
       
        <img src="3D Movie Effects/3d_movie_effects_351.png" width="200" height="200">
       
   
   
   
    </body>
</html>


OUTPUT : 


No comments:

Post a Comment