diff --git a/aulas/2024-03-18/README.md b/aulas/2024-03-18/README.md new file mode 100644 index 0000000..dbb84f7 --- /dev/null +++ b/aulas/2024-03-18/README.md @@ -0,0 +1,3 @@ +``` + Aula ministrada pelo Elias +``` \ No newline at end of file diff --git a/aulas/2024-07-08/index.html b/aulas/2024-07-08/index.html new file mode 100644 index 0000000..277bfdb --- /dev/null +++ b/aulas/2024-07-08/index.html @@ -0,0 +1,18 @@ + + + + + + + Manipulação + + + +

Meu nome é

+ + + + + + + \ No newline at end of file diff --git a/aulas/2024-07-08/script.js b/aulas/2024-07-08/script.js new file mode 100644 index 0000000..a857c09 --- /dev/null +++ b/aulas/2024-07-08/script.js @@ -0,0 +1,10 @@ +const nome = prompt("Digite seu nome") + +// document.body.innerHTML = document.body.innerHTML + "

" + nome + "

" +// document.body.innerHTML += "

" + nome+ "

" +document.body.innerHTML += `

${nome}

` + +// Atividade de Casa + +// Receber do prompt uma cor entre verde, amarelo, vermelho +// Dependendo da cor colocar uma div redonda no html com a cor escolhida diff --git a/aulas/2024-07-08/style.css b/aulas/2024-07-08/style.css new file mode 100644 index 0000000..d409cef --- /dev/null +++ b/aulas/2024-07-08/style.css @@ -0,0 +1,3 @@ +#titulo { + color: red; +} \ No newline at end of file