diff --git a/TOPIC 0/1 i - Expenses/expenses.css b/TOPIC 0/1 i - Expenses/expenses.css
new file mode 100644
index 00000000..2d2b59ed
--- /dev/null
+++ b/TOPIC 0/1 i - Expenses/expenses.css
@@ -0,0 +1,7 @@
+table {
+ border: 1px solid black;
+}
+
+th {
+ height: 50px;
+}
\ No newline at end of file
diff --git a/TOPIC 0/1 i - Expenses/expenses.html b/TOPIC 0/1 i - Expenses/expenses.html
new file mode 100644
index 00000000..692f941d
--- /dev/null
+++ b/TOPIC 0/1 i - Expenses/expenses.html
@@ -0,0 +1,33 @@
+
+
+
+
+
+ Bootcamp - Expenses
+
+
+
+
+
+
+
+
+
+
+
+
+
Expense
+
Cost
+
+
+
Apples
+
20
+
+
+
Bananas
+
30
+
+
+
+
+
\ No newline at end of file
diff --git a/TOPIC 0/1 ii -Todo List/todolist.html b/TOPIC 0/1 ii -Todo List/todolist.html
new file mode 100644
index 00000000..091e53ce
--- /dev/null
+++ b/TOPIC 0/1 ii -Todo List/todolist.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+ Bootcamp - Todo List
+
+
+
+
+
+
+
+
+
+
+ My todo list
+
+
Breakfast
+
Do some exercise
+
Do some code
+
Work
+
+
+
+
\ No newline at end of file
diff --git a/TOPIC 0/1 iii - Media/audio.mp3 b/TOPIC 0/1 iii - Media/audio.mp3
new file mode 100644
index 00000000..5d1e6a91
Binary files /dev/null and b/TOPIC 0/1 iii - Media/audio.mp3 differ
diff --git a/TOPIC 0/1 iii - Media/foto.jpg b/TOPIC 0/1 iii - Media/foto.jpg
new file mode 100644
index 00000000..a0e9e6d7
Binary files /dev/null and b/TOPIC 0/1 iii - Media/foto.jpg differ
diff --git a/TOPIC 0/1 iii - Media/media.css b/TOPIC 0/1 iii - Media/media.css
new file mode 100644
index 00000000..1091e097
--- /dev/null
+++ b/TOPIC 0/1 iii - Media/media.css
@@ -0,0 +1,7 @@
+img {
+ width: 30%;
+}
+
+video {
+ width: 30%;
+}
\ No newline at end of file
diff --git a/TOPIC 0/1 iii - Media/media.html b/TOPIC 0/1 iii - Media/media.html
new file mode 100644
index 00000000..0b847209
--- /dev/null
+++ b/TOPIC 0/1 iii - Media/media.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+ Bootcamp - Media
+
+
+
+
+
+
+
+
+
+
+
Image
+
+
+
Video
+
+
Audio
+
+
+
+
\ No newline at end of file
diff --git a/TOPIC 0/1 iii - Media/video.mp4 b/TOPIC 0/1 iii - Media/video.mp4
new file mode 100644
index 00000000..0a4dd5b4
Binary files /dev/null and b/TOPIC 0/1 iii - Media/video.mp4 differ
diff --git a/TOPIC 0/1 iv -Form/form.css b/TOPIC 0/1 iv -Form/form.css
new file mode 100644
index 00000000..ff253591
--- /dev/null
+++ b/TOPIC 0/1 iv -Form/form.css
@@ -0,0 +1,4 @@
+input[type=text] {
+ background-color: #3CBC8D;
+ color: white;
+}
\ No newline at end of file
diff --git a/TOPIC 0/1 iv -Form/form.html b/TOPIC 0/1 iv -Form/form.html
new file mode 100644
index 00000000..682af261
--- /dev/null
+++ b/TOPIC 0/1 iv -Form/form.html
@@ -0,0 +1,34 @@
+
+
+
+
+
+ Bootcamp - Form
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TOPIC 0/2 - CSS/index.css b/TOPIC 0/2 - CSS/index.css
new file mode 100644
index 00000000..50073e3d
--- /dev/null
+++ b/TOPIC 0/2 - CSS/index.css
@@ -0,0 +1,39 @@
+html {
+ font-size: 14px;
+ font-family: Arial, Helvetica, sans-serif
+}
+
+header {
+ text-align: center;
+}
+
+footer {
+ text-align: center;
+}
+
+aside {}
+
+nav {}
+
+.header {
+ font-size: 46px;
+ background-color: #FF00FF;
+}
+
+.footer {
+ font-size: 10px;
+ background-color: #FF00FF;
+}
+
+.section {
+ font-size: 14px;
+}
+
+.nav {
+ font-size: 12px;
+ background-color: #0000FF;
+}
+
+.aside {
+ font-size: 10px;
+}
\ No newline at end of file
diff --git a/TOPIC 0/2 - CSS/index.html b/TOPIC 0/2 - CSS/index.html
new file mode 100644
index 00000000..712a83e2
--- /dev/null
+++ b/TOPIC 0/2 - CSS/index.html
@@ -0,0 +1,28 @@
+
+
+
+
+
+ Bootcamp - Form
+
+
+
+
+
+
+
+
+
+
+ HEADER
+
+
+ SECTION HEADER
+ SECTION ARTICLE
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/TOPIC 1/1/css/style.css b/TOPIC 1/1/css/style.css
new file mode 100644
index 00000000..2fb731e8
--- /dev/null
+++ b/TOPIC 1/1/css/style.css
@@ -0,0 +1,28 @@
+p {
+ font-family: Arial, Helvetica, sans-serif;
+ font-size: 15px;
+}
+
+p.oculto {
+ visibility: hidden;
+}
+
+p.visible {
+ visibility: visible;
+}
+
+#pa {
+ display: none;
+}
+
+div {
+ text-align: center;
+}
+
+section {
+ text-align: center;
+}
+
+nav {
+ text-align: center;
+}
\ No newline at end of file
diff --git a/TOPIC 1/1/index.html b/TOPIC 1/1/index.html
new file mode 100644
index 00000000..b1694d97
--- /dev/null
+++ b/TOPIC 1/1/index.html
@@ -0,0 +1,70 @@
+
+
+
+
+
+ Bootcamp - Topic 1
+
+
+
+
+
+
+
+