Radio button
<html>
<body>
<form>
<input type="radio" name="sex" value="male">Male<br>
<input type="radio" name="sex" value="female">Female
</form>
</body>
</html>
Run . . . .
Password
<html>
<body>
<form>
Password: <input type="password" name="pwd">
</form>
</body>
</html>
Run . . . .
Text Feild
<html>
<body>
<form>
First name: <input type="text" name="firstname"><br>
Last name: <input type="text" name="lastname">
</form>
</body>
</html>
Run . . . .
submit button
<html>
<body>
<form name="input" action="html_form_action.asp" method="get">
Username: <input type="text" name="user">
<input type="submit" value="Submit">
</form>
</body>
</html>
Run . . . .
HTML Unordered Lists
<html>
<body>
<ul>
<li>Tea</li>
<li>Milk</li>
</ul>
</body>
</html>
Run . . . .
HTML Ordered Lists
<html>
<body>
<ol>
<li>juice</li>
<li>Milk</li>
</ol>
</body>
</html>
Run . . . .
<<< Previous