app.js
//Desafio 02
let titulo = document.querySelector('h1');
titulo.innerHTML = 'Hora do Desafio';
//Desafio 03
function cliqueConsole()
{
console.log('O botão foi clicado.');
}
//Desafio 04
function cliqueAlert()
{
alert('Eu amo JS');
}
//Desafio 05
function cliquePrompt()
{
let cidade = prompt('Insira o nome de uma cidade brasileira:');
alert(`Estive em ${cidade} e lembrei de você.`);
}
//Desafio 06
function cliqueSoma()
{
let [valor1, valor2] = [parseInt(prompt('Insira o primeiro número:')), parseInt(prompt('Insira o segundo número:'))];
let resultado = valor1 + valor2;
alert(`O resultado da soma de ${valor1} e ${valor2} é ${resultado}.`);
}
index.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="cliqueConsole()" class="button">Console</button> <!-- Desafio 03 -->
<button onclick="cliqueAlert()" class="button">Alert</button> <!-- Desafio 04 -->
<button onclick="cliquePrompt()" class="button">Prompt</button> <!-- Desafio 05 -->
<button onclick="cliqueSoma()" class="button">Soma</button> <!-- Desafio 06 -->
</main>
<script src="app.js"></script>
</body>
</html>
style.css
header {
text-align: center;
font-size: 30px;
color: #279EFF;
}
main, html {
margin: 0;
padding: 0;
height: 50%;
display: flex;
justify-content: center;
align-items: center;
background-color: #0C356A;
}
.container {
text-align: center;
color: #279EFF;
}
.button {
padding: 10px 20px;
margin: 10px;
font-size: 24px;
border: none;
background-color: #3498db;
cursor: pointer;
border-radius: 5px;
}
.button:hover {
background-color: #2980b9;
}