Here are 5 most rare used html tags which we learn today. While they might familiar but still quite useful in some situations.
So let's start learning most 5 html unused tags...
-
abbr tag
abbr tag only used for define abbreviated words. You need to define a title inside a tag and when a user is hover on it the full definition appears below.
abbr tag is rarely used, but the benefits are many for screen readers, search engine and spellchecker.
2.fieldset tag
Fieldset is a nifty little attribute that you can add to your forms to logically group form elements. Once applied the fieldset tag draws a box around the elements within the fieldset.
3.ins tag
If you want underline without using css, then use ins tag. This tag add underline of the text which is inside the ins tag.
4.del tag
This tag is as similar to ins tag but the difference is ins tag used to underline words and del tag is shown what's been taken out with a strikthrough.
5.cite tag
cite tag is used to define text inside other elements for a reference. Typically the browser will render the text inside of the cite tag in italics. The cite tag is really useful for citing bibliographic and other site references.
🙏 Thanks for reading...
👉 Stay tuned with us for more
interesting article.
Top comments (1)
I think that you misunderstand the purpose of these tags...
None of these tags are used to define visual styles on content because HTML has nothing to do with visual styles. It's a semantic language that is used to describe its content...
If you want to apply visual styling to your page, use CSS.
The
abbr
tag is used for abbreviations. Your example is invalid HTML, becauseuse
is not an abbreviation ofhtml tags
.A valid use of
abbr
tag would be:The
ins
tag is used to represent inserted text. It it NOT used to apply underline to text. If you want to apply an underline to element text, use CSS.So a correct example of underlining text would be:
A correct example of using the
ins
tag might be to show document revisions:The
del
is the inverse ofins
, it is used to symbolise text that was removed:This tag is used all the time. A common example would be for discounted items on an ecommerce website:
If you want to apply a visual strikethrough style to your content, use CSS:
The
cite
tag is used to define the title of a creative work:If you want to apply visual italic style, use CSS:
If you want to emphasise a particular portion of text, use
em
tag: