diff --git a/aula/exs1.js b/aula/exs1.js
new file mode 100644
index 0000000..7950e36
--- /dev/null
+++ b/aula/exs1.js
@@ -0,0 +1,11 @@
+
+
+
+
+let valorReais = Number(prompt("Qual o valor em reais a ser convertido para dolar?"))
+
+let resultado = valorReais / 5.30
+
+alert('valor convertido em dolar é ' + resultado)
+
+console.log('valor convertido em dolar é' + resultado)
\ No newline at end of file
diff --git a/aula/index.html b/aula/index.html
new file mode 100644
index 0000000..90c2201
--- /dev/null
+++ b/aula/index.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/exercicios/para-casa/exs2.js b/exercicios/para-casa/exs2.js
new file mode 100644
index 0000000..20bd484
--- /dev/null
+++ b/exercicios/para-casa/exs2.js
@@ -0,0 +1,17 @@
+let prova1 = Number(prompt("Qual foi a sua nota na primeira prova?"));
+
+let prova2 = Number(prompt("Qual foi a sua nota na segunda prova?"));
+
+let prova3 = Number(prompt("Qual foi a sua nota na terceira prova?"));
+
+
+let media = (prova1 + prova2 + prova3) / 3;
+
+if (media <5) { alert ("Vish, aluno reprovado.") }
+
+else if (media <= 6.99) { alert ("Aluno em recuperação - Boa sorte!")}
+
+ else if (media >= 7) { alert ("Parabéns, aluno aprovado!")}
+
+
+
diff --git a/exercicios/para-casa/index.html b/exercicios/para-casa/index.html
new file mode 100644
index 0000000..ccd078a
--- /dev/null
+++ b/exercicios/para-casa/index.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+ Document
+
+
+
+
+
\ No newline at end of file