1
HTML/CSSIntermediate#html#forms
Beyond text and password, HTML5 added email, number, date, time, tel, url, range, color, search, and checkbox/radio remain classics. These give built-in validation and mobile-optimized keyboards without JavaScript.
<input type="email" required> <input type="number" min="1" max="10"> <input type="date"> <input type="range" min="0" max="100"> <input type="color">