5 Useful HTML Tags and Attributes You Didn’t Know About

Useful but unpopular HTML tags/attributes

Artturi Jalli
Better Programming
Published in
3 min readApr 19, 2021

--

HTML: Useful tags you didn’t know about
Image Credit: Author

1. Input Suggestions

Use datalist tag to show suggestions in conjunction with an input list. To connect input and datalist, input field’s list attribute must be the same as the ID of the datalist:

<label for="car">Choose a car</label>…

--

--