In this post I'm gonna share with you some cool html tags and attributes.
- The title attribute specifies extra information about an element.The information is most often shown as a tooltip text when the mouse moves over the element.
<p title="I'm a tooltip">I have a tooltip</p>
- mark tag - everything wrapped between opening and closing brackets will be highlighted. The presence of the mark element is not announced by most screen reading technology in its default configuration. Here's a good post on how to fix it.
<p>This is a <mark>paragraph</mark></p>
- HTML contenteditable attribute indicates if the content should be editable by the user.
<p contenteditable>Write your name here</p>
- The meter element is used to display a gauge. The meter element should not be used to indicate progress (as in a progress bar). For progress bars, use the progress tag.
<h4>Disk usage</h4>
<div>
<label for="disk-c">C:</label>
<meter id="disk-c" value="0.6"></meter>
</div>
<div>
<label for="disk-d">D:</label>
<meter id="dist-d" min="10" max="50" value="40"></meter>
</div>
- base tag specifies the base URL and/or target for all relative URLs in a document. There can only be one single base element in a document, and it must be inside the head element.
<head>
<base href="https://example.com/">
</head>
<img src="images/example.svg" alt="">
That's it, hope you've found some usefull info here. Stay safe and have a great day :)
Top comments (31)
Is it supported by all browsers.
Yep, except meter is not supported in ie and Iām not sure about contenteditable here is a mdn article about it.
It seems so...
That's pretty nifty. Never heard of any of these til today.
Glad I helped you learn something new )
Do you like streaming movies and TV shows on your mobile? Download TeaTV App Now!
I did not know about the
title="I'm a tooltip"
attribute, thanks for sharing :)Learned it today as well;)
The Content Editable attribute is going to be super helpful, thanks!
Glad to help;)
Do you like watching anime series on your mobile? Download 9anime app now!
Wait, meter? Thatās great! Thanks for that!
Does anyone wants to make money playing games? Download Teen Patti Real Cash Game now!
Yep, no problem :)
<base>
seems pretty handy! Thank you!No problem )
What a fantastic post about HTML tags and attributes! š Your clear explanations and examples of various elements like the title attribute, mark tag, contenteditable attribute, and meter element are incredibly helpful. The insights you provide are like a toolbox for web development. By the way, if you're ever in need of tutorials for enhancing your web skills, TubeMate, a renowned video downloading application, can be your go-to resource. Keep up the excellent work and continue sharing your valuable insights! šš
Nice! i always wondered how to add those tooltips
useful!
Glad I helped.
Thank you so much for this article.
No problem, glad to help;)
Amazing post. Thanks a lot for share with us.
š