HTML5 Input Types
<html>
<head>
<title>HTML5 Input Types</title>
</head>
<body>
<form action="">
<label>Select Color</label> <input type="color" name=""/>
<br><br>
<label>Number</label> <input type="number" min="0" max="100" step="10" name=""/>
<br><br>
<label>Range</label> <input type="range" min="0" max="100" step="10" name=""/>
<br><br>
<label>Date</label> <input type="date" name=""/>
<br><br>
<label>DateTime</label> <input type="datetime-local" name=""/>
<br><br>
<label>Month</label> <input type="month" name=""/>
<br><br>
<label>Week</label> <input type="week" name=""/>
<br><br>
<label>Time</label> <input type="time" name=""/>
<br><br>
<label>Email</label> <input type="email" name=""/>
<br><br>
<label>URL</label> <input type="url" name=""/>
<br><br>
<label>Search</label> <input type="search" name=""/>
<br><br>
<label>Phone No.</label> <input type="tel" name=""/>
<br><br>
<input type="submit"/>
</form>
</body>
</html>