HTML Tags #12


PICTURE TAG

The tag helps you display images in a responsive way, showing an alternative image version for smaller View-ports. It needs to contain one or more tags and one tag.

Code:

<img src = “default _ image. jpg” alt = “”>

AUDIO TAG
This tag are defines a sound, such as music audio streams. There are three currently supported file formats: MP3, WAV, and OGG.
Code:
<audio src="developersdj.ogg" controls>
Your internet browser does not support the audio Tag element.
</audio>

 

VIDEO TAG
The tag allows you to embed a media player for video playback. For example, you can upload your video on AWS S3 and use the tag to embed it on your website. You can also specify certain attributes, such as width, height, auto play, loop, Controls, etc.
Code:

<video width="520" height="320" controls>
  
<source src="KGF2.mp4" type="video/mp4">
  
<source src="KGF2.ogg" type="video/ogg">
  Your internet browser does not support the Video Tag element.
</video>

BLOCKQUOTE TAG
The tag specifies a section that is quoted from any another source.
Code:

<blockquote cite="http://www.developersdj.com">
The tag allows you to embed a media player for video playback. For example, you can upload your video on AWS S3 and use the tag to embed it on your website. You can also specify certain attributes, such as width, height, auto play, loop, Controls, etc.
</blockquote>

 Give a man a programs, confound him for a day. Teach a man to program, confound him for a lifetime. 

FIGURE TAGS
The tag can be used to mark up a photo. This element can also contain a.

idea to do doing done

DETAILS TAG
The tag is used for the content / information that is initially hidden but may be displayed if the user wishes to see it.
Code:

<details>
  
<summary>Developers</summary>
  
<p> Click To Open Hey, in negatively collapsible. My content is currently hidden until you click on Summary.</p>
</details>

Click To Open Hey, in negatively collapsible. My content is currently hidden until you click on Summary.

METER TAG
The tag can be used to measure data within a given range (a gauge). This can be achieved with min and max values or with a percentage. Code: 2 out of 10 60%

PROGRESS TAG
The tag represents a task of progress. The tag should not be confused with. the tag (which represents a gauge).


Comments

Popular posts from this blog

Hacker Directory #49

Programmer Know about following concept #21

You are Founder of Software company #20