~/www/Lesson7/htmlDoc_form.html.html <html>
<head>
<meta name="author" content="bioskill">
<Meta name="content" content="simple form example">
<title>Form example</title>
</head>

<body bgcolor="99CC99">
<form method="get" action="http://www.cs.huji.ac.il/~bioskill">

Text:     <input type="text" name="text_var"><br>
Password: <input type="password" name="pass_var"><br>
Checkbox1: <input type="checkbox" name="check_var" value="1 checked" checked="true"><br>
radio1: <input type="radio" name="rad1_var" value="1 radio">
radio2: <input type="radio" name="rad1_var" value="2 radio">
<input type="submit">
<input type="reset">

</form>
</body>

</html>