diff --git a/execicio01.html b/execicio01.html
new file mode 100644
index 0000000..1b87376
--- /dev/null
+++ b/execicio01.html
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+ Escrevento
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/exercicio02.html b/exercicio02.html
new file mode 100644
index 0000000..7b2bd87
--- /dev/null
+++ b/exercicio02.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+ Elementos
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/exercicio03.html b/exercicio03.html
new file mode 100644
index 0000000..ad3c8d2
--- /dev/null
+++ b/exercicio03.html
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+ Timeout
+
+
+
+
+ Exibir Caracteres
+
+
+
+
+
+
\ No newline at end of file
diff --git a/exercicio04.html b/exercicio04.html
new file mode 100644
index 0000000..ca916e4
--- /dev/null
+++ b/exercicio04.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/script.js b/script.js
new file mode 100644
index 0000000..c9fb9a8
--- /dev/null
+++ b/script.js
@@ -0,0 +1,26 @@
+function nomes(){
+ var lista = [
+ {
+ nome: "Thiago",
+ idade: 4567
+ },
+ {
+ nome: "Caio",
+ idade: 8
+ },
+ {
+ nome: "Bruno",
+ idade: 24
+ }
+ ]
+
+
+ for(let pos = 0; pos< lista.length; pos++){
+
+ var res = document.getElementById('texto')
+ res = document.write(lista[pos].nome)
+ }
+
+
+}
+