WhatsApp WhatsApp Us
Here Are Some HTML Tags We May Not Be Using - Kothari Tech Blog

Here Are Some HTML Tags We May Not Be Using

Here Are Some HTML Tags We May Not Be Using

Even if you use HTML regularly, there are some specialized tags that can be extremely useful but are often overlooked.

1) <meter>

The <meter> tag represents a scalar measurement within a known range or a fractional value. It is ideal for things like disk usage, voting results, or task completion ratios.

2) <article>

The <article> tag specifies independent, self-contained content. Articles can be syndicated or reused independently, making it perfect for blog posts or news items.

3) <progress>

The <progress> tag represents the completion progress of a task. It’s typically used in forms, uploads, or downloads to show progress to users.

4) <aside>

The <aside> tag defines content aside from the main content. Common uses include sidebars, pull quotes, or advertisements.

5) <pre>

The <pre> tag defines preformatted text. It preserves spaces, tabs, and line breaks exactly as they appear in the HTML, which is useful for code snippets.

6) <canvas>

The <canvas> tag is used to draw graphics on the fly via scripting, usually with JavaScript. You can create charts, animations, games, and more.