ETIQUETAS Y ATRIBUTOS

ETIQUETAS Y ATRIBUTOS


<!DOCTYPE html>
<html>
<head>
<title>ETIQUETAS Y ATRIBUTOS</title>
<body bgcolor="pink"
</head>
<body>
<form>
<label for="nombre">Ingrese su nombre de usuario:</label>
<intup type="text" placeholder="Escribe tu nombre" maxlenght="45"name="nombre" id="nombre">
<br></br>
<label for="contraseña">Ingrese su contraseña:</label>
<input type="password" placeholder="Escribe tu contraseña" maxlenght="10" name="contraseña" id="contraseña">
<br></br>
<label for="nombre">Ingrese su correo:</label>
<input type="email" placeholder="Ecribe tu correo" maxlenght="50" name="correo" id="correo">
<br></br>
<label for="sexo">Marca su sexo:</label>
<input type="radio" placeholder="sexo">Masculino
<input type="radio" placeholder="sexo">Femenino
<br><br>
<input type="button" value="Enviar">
<br><br>
<input type="submit" value="Enviar Consulta">
<br><br>
<label for="Países">Países:</label>
<select name="">
<option value="Perú">Perú</option>
<option value="España">España</option>
<option value="USA">USA</option>
<option value="Bolivia">Bolivia</option>
<option value="Ecuador">Ecuador</option>
<option value="Brasil">Brasil</option>
<option value="Uruguay">Uruguay</option>
<option value="Colombia">Colombia</option>
</select>
<br><br>
<label for="color">Color:</label>
<input type="color" name="color">
<br><br>
<label for="range">Rango:</label>
<input type="range" name="range">
</form>
</body>
</html>


No hay comentarios:

Publicar un comentario