Today we're going to look at 5 #HTML tags you don't know.
These are tag that can be pretty useful but not very well known
<article>
<aside>
<canvas>
<figure>
<datalist>
Explain in Thread
These are tag that can be pretty useful but not very well known





Explain in Thread

<ARTICLE>
Article tag specifies independent, self-contained content.
When To Use
- Forum post
- News story
- Blog post
<ASIDE>
Defines content aside from the page. The aside tag defines some content aside from the content it is placed in.
When to use
- usually in the sidebar
Article tag specifies independent, self-contained content.
When To Use
- Forum post
- News story
- Blog post
<ASIDE>
Defines content aside from the page. The aside tag defines some content aside from the content it is placed in.
When to use
- usually in the sidebar
<CANVAS>
Defines graphics. The canvas tag is used to draw graphics, on the fly, via scripting( usually JavaScript )
Syntax
<canvas id "myCanvas" width="200" height= "100" style= "border: 1px solid #000000;"> </canvas>
Defines graphics. The canvas tag is used to draw graphics, on the fly, via scripting( usually JavaScript )
Syntax
<canvas id "myCanvas" width="200" height= "100" style= "border: 1px solid #000000;"> </canvas>
<FIGURE>
The figure tag specifies self-contained content, like illustrations, diagrams, photos, code listings etc.
<DATALIST>
The datalist tag specifies a list of pre defined options for an <input> element.
When to use
- To provide extra options in dropdown list.
The figure tag specifies self-contained content, like illustrations, diagrams, photos, code listings etc.
<DATALIST>
The datalist tag specifies a list of pre defined options for an <input> element.
When to use
- To provide extra options in dropdown list.