Está en la página 1de 2

(ULTIMO EJERCICIO)

------------->

<!DOCTYPE html>

<html lang="es-Pe">
<head>
<title>Formularios HTML5</title>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">

</head>

<body>

<!-- Formulario Para Ingreso De Datos Persona -->


<!-- Etiquea <fieldset> -->

<fieldset>
<legend> NUEVA PERSONA</legend>
<!-- METODOS : GET , SET, REQUEST,COOKIES, SESSION-->
<!--enctype="form-data"-->
<form>
<label> <font color="blue" face="Monotype Corsiva" size="4" >Nombre :</font>
</label>
<input type="text" placeholder="Ingrese Nombre" size="40"/> <!-- ETIQUETA
<input/> Lo Tome para hace Una Caja De Texto-->

<!-- Etiqueta <br> Para Ser SALTO-->


<br><br>

<label> Apellido:</label>
<input type="text" placeholder="Ingrese Apellido" size="40"/>

<br><br>
<label> Sexo :</label>
<label> Masculino</label>
<input name="sex" type="radio" value= "M" />
<label> Femenino</label>
<input name="sex" type="radio" value= "F" />

<br><br>
<label> Profesi�n</label>
<select name="pro">
<option value="1"> Ingeniero</option>
<option value="2"> Licenciado</option>
<option value="3"> Arquitecto</option>
<option value="4"> Medico</option>
</select>
</form>
</fieldset>

</body>
</html>
(EJERCCIO N�2 CON IMAGEN)
---------->

<!DOCTYPE html>
<html lang="es-pe">

<head>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<p> mi <b> mama </b>me mima </p>
<p> mi <strong></strong> mama <strong> me mima </strong>
<p> mi <s> mama</s> me mima</p>
<p> mi <i> mama</i> me mima</p>
<p> mi <u> mama </u> me mima</p>

<pre>
TRILCE-18va soneto
oh las cuatro<u> paredes</u> de la celda
oh las cuatro paredes<b> salvicantes</b>
que sin <u> remedio</u>dan el mismo numero
criadero de <i> nervios</i>mala hecha
por sus cuatro <strong>rincones</strong>...</pre>
<table>border="l"width="100"height="100">
<tr>
<td>elemento01</td><td>elemento02</td>
</tr>
</table>
<img src="IMG/20170630_114530.jpg"/>
<video WIDTH="320" HEIGTH="240"CONTROLS>
<source src="VIDEO/MOV BB.MP4" TYPE="VIDEO/MP4">
<source src="video/mov bb.mp4"tupe="video/mp4>"
</body>
</html>

También podría gustarte