Part-2: 5 HTML Tags That Almost Nobody Knows

Hello, I’m Aya Bouchiha, today, I’m going to discuss another 5 HTML tags that you’re almost don’t know.

part-1: 5 HTML Tags That Almost Nobody Knows

<dfn>

<dfn>: used to specify a term that is going to be defined, most browser…


This content originally appeared on DEV Community and was authored by Aya Bouchiha

Hello, I'm Aya Bouchiha, today, I'm going to discuss another 5 HTML tags that you're almost don't know.

part-1: 5 HTML Tags That Almost Nobody Knows

<dfn>

<dfn>: used to specify a term that is going to be defined, most browsers display this element with an italic font style.

<p>
    <dfn>Mathematics</dfn>
    is the science of structure, order, and relation that has evolved from
    counting, measuring, and describing the shapes of objects
</p>

HTML tags Aya Bouchiha

<kbd>

<kbd>: used to define keyboard input, it is displayed with a monospace font

<h1>How to rename a file ?</h1>
<p>
    Select the file with a left click and then press <kbd>F2</kbd> on your
    keyboard.
</p>

HTML tags Aya Bouchiha

<samp>

<samp>: is used to define sample output from a computer program.

<p><samp>File not found.<br />Press <kbd>F1</kbd> to continue</samp></p>

HTML tags Aya Bouchiha

<meter>

<meter>: represents either a scalar value within a known range or a fractional value.
more details

<div class="skills">
    <label for="html">HTML</label>
    <meter id="html" value="8" min="0" max="10">2 out of 10</meter><br>
</div>

HTML tags Aya Bouchiha

<dl>, <dt> & <dd>

<dl> : is used wiht <dt> and <dd> to define a description list.

<dt> defines a term in a description list.

<dd> describes a term in a description list.

<dl>
    <dt>&lt;dfn&gt;</dt>
    <dd>for specifing a term</dd>
    <dt>&lt;kbd&gt;</dt>
    <dd>defining a keyboard input</dd>
    <dt>&lt;samp&gt;</dt>
    <dd> for defining sample output from a computer program</dd>
    <dt>&lt;meter&gt;</dt>
    <dd>for representing either a scalar value within a known range or a fractional value.</dd>
    <dt>&lt;dl&gt;</dt>
    <dd>for defining a description list</dd>
</dl>

HTML tags Aya Bouchiha

Summary

<dfn> : for specifing a term.
<kbd> : for defining a keyboard input.
<samp> : for defining sample output from a computer program.
<meter> : or representing either a scalar value within a known range or a fractional value.
<dl> : for defining a description list.

References

Have an amazing day!


This content originally appeared on DEV Community and was authored by Aya Bouchiha


Print Share Comment Cite Upload Translate Updates
APA

Aya Bouchiha | Sciencx (2021-07-20T00:55:01+00:00) Part-2: 5 HTML Tags That Almost Nobody Knows. Retrieved from https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/

MLA
" » Part-2: 5 HTML Tags That Almost Nobody Knows." Aya Bouchiha | Sciencx - Tuesday July 20, 2021, https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/
HARVARD
Aya Bouchiha | Sciencx Tuesday July 20, 2021 » Part-2: 5 HTML Tags That Almost Nobody Knows., viewed ,<https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/>
VANCOUVER
Aya Bouchiha | Sciencx - » Part-2: 5 HTML Tags That Almost Nobody Knows. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/
CHICAGO
" » Part-2: 5 HTML Tags That Almost Nobody Knows." Aya Bouchiha | Sciencx - Accessed . https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/
IEEE
" » Part-2: 5 HTML Tags That Almost Nobody Knows." Aya Bouchiha | Sciencx [Online]. Available: https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/. [Accessed: ]
rf:citation
» Part-2: 5 HTML Tags That Almost Nobody Knows | Aya Bouchiha | Sciencx | https://www.scien.cx/2021/07/20/part-2-5-html-tags-that-almost-nobody-knows/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.