JSFiddle - React, Tailwind, and code Playground
by khamer
HTML
Submit: <input type="submit">
<br />
Reset: <input type="reset">
<br />
Button: <input type="button" value="button">
<br />
Checkbox: <input type="checkbox">
<br />
Radio: <input type="radio">
<br />
Search: <input type="search">
<br />
Text: <input type="text">
<br />
Password: <input type="password">
<br />
Color: <input type="color" name="color">
<br />
Date: <input type="date" name="date">
<br />
Datetime: <input type="datetime" name="datetime">
<br />
Datetime-local: <input type="datetime-local" name="datetime-local">
<br />
Email: <input type="email" name="email">
<br />
Month: <input type="month" name="month">
<br />
Number: <input type="number" name="number">
<br />
Range: <input type="range" id="range" name="range">
<br />
Search: <input type="search" name="search" results="5" autosave="saved-searches">
<br />
Tel: <input type="tel" name="tel">
<br />
Time: <input type="time" name="time">
<br />
URL: <input type="url" name="url">
<br />
Week: <input type="week" name="week">
CSS
input {
-webkit-appearance: none;
}