JS
let titulo = document.querySelector('h1');
titulo.innerHTML = 'Hora del Desafío';
function botonPresionado() {
alert('Haz presionado el boton');
}
function nombreCiudad(){
let ciudad = prompt("Indique un nombre de una ciudad de Brasil");
console.log(ciudad);
alert (`Estuve en ${ciudad} y me acordé de ti`);
}
function mensajeAlert(){
alert('Yo amo JS');
}
function suma(){
let numero1 = parseInt(prompt('Escribe un número:'));
let numero2 = parseInt(prompt('Escribe otro número'));
let resultado = numero1 + numero2;
alert(`La suma de los dos números es: ${resultado}`);
}
HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Document</title>
</head>
<body>
<header>
<h1></h1>
</header>
<main class="container">
<button onclick="botonPresionado();" class="button">Console</button>
<button onclick="mensajeAlert();" class="button">Alert</button>
<button onclick="nombreCiudad();" class="button">Prompt</button>
<button onclick="suma();" class="button">Suma</button>
</main>
<script src="app.js"></script>
</body>
</html>