diff --git a/index.html b/index.html
new file mode 100644
index 0000000..218b809
--- /dev/null
+++ b/index.html
@@ -0,0 +1,14 @@
+
+
+
+ Hello Izzy Widget
+
+
+
+
+
+
diff --git a/style.css b/style.css
new file mode 100644
index 0000000..abc3ae5
--- /dev/null
+++ b/style.css
@@ -0,0 +1,15 @@
+/* Add your styles for the widget here */
+.widget-container {
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ height: 100vh;
+}
+
+.hello-box {
+ background-color: pink;
+ color: rgb(92, 13, 13);
+ padding: 20px;
+ border-radius: 20px;
+ font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
+}