22 lines
612 B
HTML
22 lines
612 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<title>Ejercicio 1</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 1</h1>
|
|
<p>Ingrese su nombre</p>
|
|
<form action="">
|
|
<label for="input-nombre"></label>
|
|
<input type="text" name="input-nombre" id="input-nombre">
|
|
<button type="submit" id="enviar-form">ver</button>
|
|
</form>
|
|
<p id="saludo"></p>
|
|
|
|
<script src="ejercicio1.js"></script>
|
|
</body>
|
|
</html>
|