DEV Community

joedev090
joedev090

Posted on

2

Html Tags for frontend developers

Some web developers doesn't have enough time to check some useful html tags that can save us time in our applications.

  1. Datalist
  2. The "datalist" html element provides an autocomplete interface for "input" elements. It contains a set of elements that have an associated value.

    datalist resource

  3. Details
  4. The accordions are very common UI element in websites or applications when we need to show lot of data, such as a questions page. By using the "details" element alongside "summary", we can achieve the same effect without JavaScript. Clicking the summary will toggle the rest of the content.

    details resource

  5. ColorPicker
  6. When we want to add a colorPicker element, most of time we have implemented it with a Javascript library or Jquery (a little bit faster). In html we can use this type of input (type="color") to provide a user interface element that lets a user specify a color.

    input color resource

  7. Progress
  8. One of the more surprised for me is the "progress" element. It displays an indicator showing the completion progress of a task.

    progress bar resource

Top comments (0)

SurveyJS custom survey software

Simplify data collection in your JS app with a fully integrated form management platform. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more. Integrates with any backend system, giving you full control over your data and no user limits.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay