diff --git a/examples/01-creating-shadow-dom.html b/examples/01-creating-shadow-dom.html
new file mode 100644
index 0000000..75401dc
--- /dev/null
+++ b/examples/01-creating-shadow-dom.html
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+ 01 - Creating Shadow Dom
+
+
+
+ Open DevTools 🔨
+ Check the code for instructions
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/examples/styles.css b/examples/styles.css
new file mode 100644
index 0000000..a24321a
--- /dev/null
+++ b/examples/styles.css
@@ -0,0 +1,24 @@
+/*=============================================
+= Reset =
+=============================================*/
+
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen,
+ Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
+}
+
+/*===== End of Reset ======*/
+
+/*=============================================
+= Layout =
+=============================================*/
+
+body {
+ max-width: 1200px;
+ margin: auto;
+}
+
+/*===== End of Layout ======*/