-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdesafio2-1.html
35 lines (25 loc) · 871 Bytes
/
desafio2-1.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<html>
<head>
<meta charset="UTF-8"/>
<title> Curso Manipulando a DOM</title>
</head>
<body>
<div id="app">
<button onClick="clicar()">Criar quadrado</button>
</div>
<script>
function clicar(){
let boxElement = document.createElement("div");
boxElement.style.width = 100;
boxElement.style.height = 100;
boxElement.style.margin = 10;
boxElement.style.backgroundColor = '#f00';
boxElement.classList.add('box');
document.body.appendChild(boxElement);
}
/* Crie um botão que ao ser clicado cria um novo elemento em tela com a forma de um quadrado
vermelho com 100px de altura e largura. Sempre que o botão for clicado um novo quadrado deve
aparecer na tela. */
</script>
</body>
</html>