forked from marquez.juan/clase-10-ejercicios-de-repaso
21 lines
544 B
HTML
21 lines
544 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Ejercicio 1</title>
|
|
<link rel="stylesheet" href="estilo.css">
|
|
</head>
|
|
<body>
|
|
<h1>Ejercicio 1</h1>
|
|
|
|
<label for="nombre">Ingresa tu nombre:</label>
|
|
<input id="nombre" type="text" placeholder="Tu nombre">
|
|
<button id="saludar">Saludar</button>
|
|
|
|
<p id="mensaje"></p>
|
|
|
|
<script src="ejercicio1.js"></script>
|
|
</body>
|
|
</html>
|