diff --git a/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html
new file mode 100644
index 0000000..6111134
--- /dev/null
+++ b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/index.html
@@ -0,0 +1,44 @@
+
+
+
+
+
+ Styled To-Do List
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css
new file mode 100644
index 0000000..10960fa
--- /dev/null
+++ b/Certified_Full_Stack_Developer/CSS/stylized-TODO-list/styles.css
@@ -0,0 +1,37 @@
+body {
+ background-color: gray;
+}
+
+.todo-list {
+ color: black;
+ background-color: rgba(0, 0, 0, 0.21)
+}
+
+a {
+ text-decoration: none;
+}
+
+a:link {
+ text-decoration: none;
+ color: red;
+}
+
+a:visited {
+ text-decoration: none;
+ color: green;
+}
+
+a:hover {
+ text-decoration: none;
+ color: hotpink;
+}
+
+a:active {
+ text-decoration: outline;
+ color: blue;
+}
+
+a:focus {
+ outline: 2px solid orange;
+ outline-offset: 2px;
+}
\ No newline at end of file