29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Ejercicio 7</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 7</h1>
|
|
<form action="">
|
|
<label for="input-nombre">Nombre</label>
|
|
<input type="text" name="input-nombre" id="input-nombre">
|
|
<label for="input-nombre" id="nombre-error" style="color: rgba(238, 21, 21, 0.971);"></label>
|
|
<br>
|
|
<label for="input-edad">Edad</label>
|
|
<input type="number" name="input-edad" id="input-edad">
|
|
<label for="input-edad" id="edad-error" style="color: rgba(238, 21, 21, 0.971);"></label>
|
|
<br>
|
|
<label for="input-password">Password</label>
|
|
<input type="password" name="input-password" id="input-password">
|
|
<label for="input-password" id="password-error" style="color: rgba(238, 21, 21, 0.971);"></label>
|
|
<br>
|
|
<input type="submit" value="Enviar">
|
|
</form>
|
|
<script src="ejercicio7.js"></script>
|
|
</body>
|
|
</html>
|