diff --git a/my code/24-content-placeholder/index.html b/my code/24-content-placeholder/index.html
new file mode 100644
index 0000000..b6c07f4
--- /dev/null
+++ b/my code/24-content-placeholder/index.html
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+ Content Placeholder
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/my code/24-content-placeholder/style.css b/my code/24-content-placeholder/style.css
new file mode 100644
index 0000000..f6abfe5
--- /dev/null
+++ b/my code/24-content-placeholder/style.css
@@ -0,0 +1,23 @@
+* {
+ margin: 0;
+ padding: 0;
+ box-sizing: border-box;
+}
+
+body {
+ height: 100vh;
+ display: flex;
+ justify-content: center;
+ align-items: center;
+ background-color: bisque;
+}
+
+.card {
+ width: 350px;
+ box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
+ border-radius: 20px;
+}
+
+.header {
+ height: 200px;
+}