Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Aplicatie 1-formulare HTML

Introduceti sursa paginii de mai jos si vedeti cum arata formularul .

<html>

<head>
<title>formulare</title>
</head>
<body>
<P>Formular de introducere date
<form action="exemplu1.html" method="get">
Introduceti numele:
<input type="text" name="nume" value=""><br>
Introduceti prenumele:
<input type="text" name="prenume" value=""><br>
Alegeti varsta:
<input type="radio" name="varsta" value=15 checked>15<br>
<input type="radio" name="varsta" value=16>16<br>
<input type="radio" name="varsta" value=17>17<br>
<input type="radio" name="varsta" value=18>18<br>
Care sunt materiile voastre preferate?<br>
<INPUT type="checkbox" name="materii" value="sport">Sport<BR>
<INPUT type="checkbox" name="materii" value="matematica">matematica<BR>
<INPUT type="checkbox" name="materii" value="limba engleza">Limba engleza<BR>
<INPUT type="checkbox" name="materii" value="informatica">informatica<BR>
<INPUT type="checkbox" name="materii" value="fizica">fizica<BR>
<INPUT type="checkbox" name="materii" value="chimie">chimie<BR>
Care este nota voastra la informatica?<br>
<select name="nota" size="1">
<option>10
<option>9
<option>8
<option>7
<option>6
<option>5
<option>4
</select>
<br>
<input type="submit" name="submit" value="adauga">
<input type=”reset” name=”reset” value=”sterge”>
</form>
</body>
</html>

You might also like