18 lines
477 B
HTML
18 lines
477 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>
|
|
<input type="text" id="nombre" placeholder="Tu nombre">
|
|
<button id="boton">Saludar</button>
|
|
<p id="saludo"></p>
|
|
|
|
<script src="ejercicio1.js"></script>
|
|
</body>
|
|
</html>
|