diff --git a/Week-02/Day_03/index.html b/Week-02/Day_03/index.html
new file mode 100644
index 0000000..6d7e2ec
--- /dev/null
+++ b/Week-02/Day_03/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+ Responsive Task - Week 2 - Day 3
+
+
+
+
+
+
+ Responsive News
+
+
+
+
+
+
+ Article 1
+ This layout uses CSS Grid to stay organized on desktop.
+
+
+
+ Article 2
+ On mobile, these cards will stack one on top of the other.
+
+
+
+ Article 3
+ Responsive design makes the web accessible to everyone.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Week-02/Day_03/style.css b/Week-02/Day_03/style.css
new file mode 100644
index 0000000..e8ad1be
--- /dev/null
+++ b/Week-02/Day_03/style.css
@@ -0,0 +1,53 @@
+body {
+ font-family: sans-serif;
+ line-height: 1.5;
+ margin: 0;
+ padding: 20px;
+}
+
+img {
+ max-width: 100%;
+ height: auto;
+ display: block;
+}
+
+nav ul {
+ display: flex;
+ list-style: none;
+ padding: 0;
+ gap: 20px;
+ background: #1a08e9;
+ padding: 10px;
+}
+nav a {
+ color: white;
+ text-decoration: none;
+}
+
+.grid {
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr;
+ gap: 20px;
+}
+
+.card {
+ border: 2px solid #271e1e;
+ padding: 10px;
+}
+
+@media (max-width: 700px) {
+
+ .grid {
+ grid-template-columns: 1fr;
+ }
+
+ nav ul {
+ flex-direction: column;
+ text-align: center;
+ }
+
+ h1 {
+ text-align: center;
+ font-size: 1.5rem;
+ }
+}
\ No newline at end of file