Informatica 3 Liceo Scientifico Scienze Applicate/HTML form

Wikibooks, manuali e libri di testo liberi.
Indice del libro

<!doctype.html> <html> <head> <title> Dati </title> </head> <body> <fieldset> <legend> Dati Anagrafici </legend>
<form> <label for="A"> Nome: </label> <input type="text" nome="A"> <label for="B"> Cognome: </label> <input type="text" nome="B">

<label for="C"> Data Nascita: </label> <input type="text" nome="C"> </fieldset> <fieldset> <legend> Dati Registrazione </legend>
<input type="password">

<select name="nazione"> <option value="1"> Inghilterra </option>
<option value="1"> Francia </option>
<option value="1"> Italia </option> </select>

<input type="email">

<textarea rows="4" cols="10"> </textarea>

<input type="checkbox" name="1"> Sito
<input type="checkbox" name="2"> Server Web
<input type="checkbox" name="3"> Server Mysql

</fieldset> <input type="radio" name="citta"> Londra
<input type="radio" name="citta"> Parigi
<input type="radio" name="citta"> Milano

<input type="reset" value="Annulla"> <input type="submit" value="Invia"> </form> </body> </html>