Skip to main content

How to insert image ,video,audio in html ?

 How to insert videos audios and images in websites ?

These are the most important tags because these tags are used from small websites to large marketing websites.

And by adding a video to website we can increase the views probability by 300% so learn properly how to add videos audios and images to website 

                    Image Tag

Image Tag is a tag by which we can insert images to html by the <image> tag ,this tag does not contain an end tag and we give some attributes like (src ) attribute in which we define the path of the image ,(width) and (height) attribute in which we give width and height of the image.

<Body>
<img src="gallery/taj.jpg"width="200px"height="50px">
</Body>

In src attribute we first give the name of file in which it is stored and then we give a forward slash (/) to separate then we give the image name with its extension.

                  Audio tag


We all know that audio tag is used to insert audios in this tag we use a control attributes , without this  attribute we cannot play that audio

 <Body>
<Audio  src="gallery/song.mp3" control="autoplay"width="200px"height="50px">
</Body>

                    Video  tag


This tag is also used as same as audio tag 
this tag also has a control attributes which is important to play the video 

 <Body>
<Video  src="gallery/video.mp4" control="autoplay"width="200px"height="50px">
</Body>

 Hope you like this series and 
If you had any quarry ask to me in the comment box.


                          Stay with me 

Comments

Popular posts from this blog

How to grow on Youtube

 How to grow on youtube Today Youtube becomes a very vast platform and for those people who want to grow on youtube has to face high competition. Youtube is becoming a way of earning for people. But it not very easy to grow on such platform which has very high competition level. Growth on youtube Today i am going to share some tips that will help you on growing your Youtube channel. These are based on knowledge and experience of some big Youtubers of all niches. Basic Tips to grow on youtube 1.Use of Tags, Title, Description and Thumbnail in right way Tags, description, title are very important for your channel growth these help you to rank your videos in search result and people can find it easly. After this Thumbnail is also important because this makes people to click on your video.  2.Content quality Content quality is most important becouse your content will decide how fast your channel will grow. Sound quality, and editing is also an important thing. As youtube algorithm...

How to style html page with tags ?

  Content of this page 1)Bold Tag 2)Italic Tag 3)Underline  Tag 4)Subscript Tag 5) Superscript Tag                                                       Bold Tag Bold tag is used to Bold or highlight the text ,word or paragraph by adding boldness to it.we can add this by using <b> tag. <Body> <b> hello world </b> </body> The text between the start and end of Bold tag will become Bold.

Head and Body tags of HTML

  Learn coding with me and Start developing websites and applications                                        Head  About head tag and where we use them Head Tag is placed at top   In this tag we can give the title of document on which we are working and we  add internal css in head tag to make our website Attractive and we add javascript in between it to make our website functionable .