7 Cool HTML Elements Nobody Uses
<p>Searching for cool <strong>HTML</strong> elements, especially if you don’t know what you’re looking for, is often like <strong>being thrown into a pile of garbage</strong></p>
<p><img alt="" src="https://miro.medium.com/v2/resize:fit:498/0*GM8-DBEDpkti1SsG.gif" style="height:371px; width:498px" /></p>
<p>Don’t worry, I did the <strong>dirty work</strong> for you!</p>
<p>After scavenging through the seemingly endless pile of <strong>HTML</strong> elements, I dug up a few of the <strong>rarely used gems</strong>!</p>
<h1>1. <code>meter</code> & <code>progress</code></h1>
<p>The <code>progress</code> element is the semantically correct way of displaying progress bars.</p>
<p>The <code>meter</code> element is <code>progress</code> on steroids. Apart from displaying a <strong>scalar measurement</strong> within a known range, it allows you to specify the value's <strong>low</strong>, <strong>high</strong> & <strong>optimum</strong> range.</p>
<pre>
<meter
min="0"
max="100"
low="25"
high="75"
optimum="80"
value="50"
></meter></pre>
<p><img alt="" src="https://miro.medium.com/v2/resize:fit:540/0*-WypK0Iqc5IugLRH.gif" style="height:284px; width:540px" /></p>
<h1>2. <code>sup</code> & <code>sub</code></h1>
<p>You can add <strong>superscripts</strong> (like <code>x²</code>) with <code>sup</code> and <strong>subscripts</strong> (like <code>x₀</code>) using <code>sub</code> to your document.</p>
<p><a href="https://tapajyoti-bose.medium.com/7-cool-html-elements-nobody-uses-436598d85668">Click Here</a></p>