<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Act5 Pau Iglesias</title> </head> <body> <form action="mailto:user@gmail.com" method="post"> <fieldset> <legend>Informació personal</legend> Nom: <br> <input type="textbox" name="Nom" style="text-transform:capitalize" value=""> <br> Cognoms: <br> <input type="textbox" name="Cognoms" style="text-transform:capitalize" value=""> <br><br><br> Gènere <br><br> Home:<input type="radio" name="genere" value="h"> <br> Dona:<input type="radio" name="genere" value="d"> <br><br><br> Aficions: <br> <input type="checkbox" name="aficions" value="llegir"> Llegir <br> <input type="checkbox" name="aficions" value="jocstaula" > Jugar jocs de taula <br> <input type="checkbox" name="aficions" value="videojocs" checked> Jugar videojocs <br> <input type="checkbox" name="aficions" value="esport"> Fer esport <br> <input type="checkbox" name="aficions" value="manualitats"> Fer manualitats <br> </fieldset> <fieldset> <legend> Informació Estudis </legend> Estudis: <br> <select name="estudis"> <option value="ESO" > Secundària/ESO </option> <option value="BAT" selected> Batxillerat </option> <option value="CFGM"> Cicles Formatius de Grau Mitja </option> </select> <br><br> Any: <br> <select name="any"> <option value="1"> 1r </option> <option value="2"> 2n </option> <option value="3"> 3r </option> <option value="4"> 4t </option> </select> <br><br> <table> <tr> <th><input type="submit" value="Envia"></th> <th></th> <th><input type="reset" value="Resestableix"></th> </table> </fieldset> </form> </body> </html>