You are on page 1of 4

<html>

<head> <title>Text Input Control</title> </head>


<body>
<form >
First name: <input type = "text" name = "first_name" /> <br><br>

Last name: <input type = "text" name = "last_name" /><br><br>

password<input type = "password" name = "pass" /> <br>


• <p> sex</p>
• <input type = "radio" name = "gen" checked="checked">male <br>

• <input type = "radio" name = "gen" checked="checked">femal<br>

• <p>Hobby</p>

• <input type = "checkbox" name = "ho">move<br>

• <input type = "checkbox" name = "ho">fooball<br>

• <input type = "checkbox" name = "ho">swmiming<br><br>


<p> select the types of cars</p>

• <label="cars"> choose cars</label>

• <select id="cars"name="cars">

• <option value="volve">volve</option>

• <option value="saab">saab</option>

• <option value="fiat">fiat</option>

• <option value="audi">audi</option>

• </select><br><br>
• <p>write the comment on the space provide</p><br>

• <textarea name ="message“rows="10"cols="30"></textarea><br><br>

• <input type = "submit" name = "button" value"submit">

• <input type = "reset" name = "button" value"reset">

</form>
</body>
</html>

You might also like