4 Less used HTML tags and their uses
List of four rarely used HTML tags and how they can be used for web development

I am a Front end developer currently working on React JS, HTML, CSS, Python, Vue JS, Webpack, Babel, AEM etc.
Search for a command to run...
List of four rarely used HTML tags and how they can be used for web development

I am a Front end developer currently working on React JS, HTML, CSS, Python, Vue JS, Webpack, Babel, AEM etc.
I didn't know about 2.output and 3.base tag.
Nice post Kritika Pattalam Bharathkumar :)
Glad you liked it. !!!
Are you planning to start your coding journey?. Then this is for you - a roadmap to help you achieve your goals.

7 ways in which you can add files to your commit using git add

As a website user, one would have come across links or buttons which say "Click to download" or "Download" on a website. Have you ever wondered how can you add one to your website?. Keep reading!!!. As part of this blog let us see how one can crea...

Display Hello World and custom message using two-way data binding

Build a random quote generator using an API - JavaScript

Kritika Pattalam Bharathkumar | Web Developer - The official blog of Kritika Pattalam Bharathkumar
22 posts
Front End Engineer | Writes about HTML, CSS, JavaScript and everything related to web development | Follow me on Twitter let's chat.
As part of this blog we are going to see 4 less used HTML tags during web development
Did you know that you can refresh the browser automatically every few seconds with just a single line of code?.
Yes, this can be done using the http-equiv="refresh" attribute on the meta tag.
<meta http-equiv="refresh" content="30">
<meta http-equiv="refresh" content="3;url=https://hashnode.com">
Note: Refresh might have accessibility concerns so use with caution.*
Output tag is used to represent the result of a calculation. In the below example we can calculate sum of two input fields and display it in the output field directly.
for attribute eg: for="a b" is used to tell the output tag, which fields are used for the manipulation. In the below code pen for attribute value is the id of the two input fields.
using the name attribute value, the results from the oninput javascript is populated into the output tag. eg: output tag name value is result hence in javascript you can pass the result after calculation using result.value
<form oninput="result.value=parseInt(a.value)+parseInt(b.value)">
<input type="range" id="a" value="50"> +
<input type="number" id="b" value="100"> =
<output name="result" for="a b"></output>
</form>
This tag is very useful when your entire webpage points to the same base URL
The base HTML element specifies the base URL to use for all relative URLs in a document. There can be only one element in a document.
<head>
<base href="https://kritika-pattalam.hashnode.dev/" target="_blank">
</head>
<body>
<a href="2-simple-ways-you-can-truncate-text-using-css">Click on this url</a>
</body>
Leave me a comment below if you know about other rarely used HTML tags.
Lets connect on Twitter | LinkedIn for more web development related chats.