You are on page 1of 1

<!

DOCTYPE html>
<html>
<head>
<title> html ,css and javascript </title>
</head>
<body>
<form>
Name <input type="text" id="fname" maxlength="19"><br><br>
password <input type="password" id="fname" maxlength="19"> <br> <br>
e-mail <input type ="email" id="email"> <br><br>

<input type="radio" id="html" name="fav_language" value="male">


<label for="html"> male</label> <br> <br>
<input type="radio" id="css" name="fav_language" value="female">
<label for="html"> female</label> <br> <br>

<input type="checkbox" id="vehicle1" name="vehicle1" value="bike">


<label for="vehicle"> i have a vehicle </label> <br>
<input type="checkbox" id="vehicle2" name="vehicle2" value="train">
<label for="vehicle"> i have a train </label> <br>
<input type="checkbox" id="vehicle3" name="vehicle3" value="car">
<label for="vehicle"> i have a car </label> <br>
<input type="checkbox" id="vehicle4" name="vehicle4" value="taxi">
<label for="vehicle"> i have a zupido</label> <br> <br> <br>

<label for="cars">choose a color:</label>

<select id="color">
<option value="green"> green</option>
<option value ="blue">blue </option>
<option value="red"> red </option>
<option value ="yellow"> yellow </option>

</select>
<br><br>
<button type ="submit" value="submit"> confirm </button><br><br>
<button type ="reset" value="reset"> reset </button>

<br><br>

You might also like