Today we& #39;re going to look at 5 #HTML tags you don& #39;t know.
These are tag that can be pretty useful but not very well known
https://abs.twimg.com/emoji/v2/... draggable="false" alt="⚒" title="Hammer und Spitzhacke" aria-label="Emoji: Hammer und Spitzhacke"> <article>
https://abs.twimg.com/emoji/v2/... draggable="false" alt="⚒" title="Hammer und Spitzhacke" aria-label="Emoji: Hammer und Spitzhacke"> <aside>
https://abs.twimg.com/emoji/v2/... draggable="false" alt="⚒" title="Hammer und Spitzhacke" aria-label="Emoji: Hammer und Spitzhacke"> <canvas>
https://abs.twimg.com/emoji/v2/... draggable="false" alt="⚒" title="Hammer und Spitzhacke" aria-label="Emoji: Hammer und Spitzhacke"> <figure>
https://abs.twimg.com/emoji/v2/... draggable="false" alt="⚒" title="Hammer und Spitzhacke" aria-label="Emoji: Hammer und Spitzhacke"> <datalist>
Explain in Thread
https://abs.twimg.com/emoji/v2/... draggable="false" alt="🧵" title="Thread" aria-label="Emoji: 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.