forked from marquez.juan/clase-10-ejercicios-de-repaso
18 lines
494 B
HTML
18 lines
494 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>
|
|
<label for="name">Nombre:</label>
|
|
<input type="text" id="name" name="name">
|
|
<button id="greet">Saludar</button>
|
|
<p id="greeting"></p>
|
|
<script src="ejercicio1.js"></script>
|
|
</body>
|
|
</html>
|