From cd3d41c960418b57387a3620ac14bc69bb8d6fe3 Mon Sep 17 00:00:00 2001 From: couldntfindabetterusername Date: Thu, 10 Mar 2022 21:33:30 +0530 Subject: [PATCH] day 24 completed --- my code/24-content-placeholder/index.html | 38 +++++++++++++++++++++++ my code/24-content-placeholder/style.css | 23 ++++++++++++++ 2 files changed, 61 insertions(+) create mode 100644 my code/24-content-placeholder/index.html create mode 100644 my code/24-content-placeholder/style.css 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; +}