SOP1
SOP1
DOCTYPE html>
<html>
<head>
<title>Forms in html5 </title>
<body>
<form>Name:<input type="text"autocomplete><br>
E-mail:<input type="email" name="email"><br>
Date of inception:<input type="date" name ="bday"><br>
Office Time:<input type="time" name=usr_time"><br>
Numbers of years completed(between 1 and 100):<input type="numbers"min
="1"max="100"><br>
Office phone number:<input type="tel" name="phone"pattern="[0-9]{2}-[0-9]
{10}"required><br>
Add your homepage:
<input type="url" name="hompage"><br>
<label for="favcolor">select yourfavourite color:</label>
<input type="color" id="favcolor"name="favcolor"><br>
<label for="bdaymonth">Birthday (month and year):</label>
<input type="month" id="bdaymonth" name="bdaymonth"><br>
<label for="vol">Volume (between 0 and 50):</label>
<input type="range" id="vol" name="vol" min="0" max="50"><br>
<label for="birthdaytime">Birthday (date and time):</label>
<input type="datetime-local" id="birthdaytime" name="birthdaytime"><br>
<label for="week">Select a week:</label>
<input type="week" id="week" name="week"><br>
<label for="gsearch">Search Google:</label>
<input type="search" id="gsearch" name="gsearch"><br>
<label for="myfile">Select a file:</label>
<input type="file" id="myfile" name="myfile"><br>
</form>
</body>
</html>