+
+
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ3.css b/CSS/Chapter3 (BoxModel)/PracticeQ3.css
new file mode 100644
index 00000000..0af85aa5
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ3.css
@@ -0,0 +1,21 @@
+#outer{
+ height:200px;
+ width:70px;
+ border:2px solid black;
+}
+.inner {
+ height:50px;
+ width:50px;
+ border: 2px solid black;
+ margin: 10px;
+ border-radius: 50%;
+}
+#inner1 {
+ background-color:red;
+}
+#inner2{
+ background-color:yellow;
+}
+#inner3{
+ background-color:green;
+}
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ3.html b/CSS/Chapter3 (BoxModel)/PracticeQ3.html
new file mode 100644
index 00000000..0f72e172
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ3.html
@@ -0,0 +1,23 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ4.css b/CSS/Chapter3 (BoxModel)/PracticeQ4.css
new file mode 100644
index 00000000..022e3c6f
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ4.css
@@ -0,0 +1,12 @@
+h2{
+ display:inline;
+ background-color: mediumvioletred;
+}
+h1{
+ display:inline;
+}
+span{
+ display:block;
+ margin:100px;
+ background-color: mediumvioletred;
+}
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ4.html b/CSS/Chapter3 (BoxModel)/PracticeQ4.html
new file mode 100644
index 00000000..05df8c3d
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ4.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Document
+
+
+
+
Heading 1
Heading 2
Span1
+
+ Span2
+
+
+ hello
+
+
+
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ5.css b/CSS/Chapter3 (BoxModel)/PracticeQ5.css
new file mode 100644
index 00000000..dcff4b50
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ5.css
@@ -0,0 +1,18 @@
+div{
+ color:brown;
+ height:200px;
+ width:100px;
+ border:5px solid black;
+ padding:50px;
+ margin:100px;
+
+}
+span{
+ display:block;
+ color:chartreuse;
+ height:200px;
+ width:100px;
+ border:5px solid black;
+ padding:50px;
+ margin:100px;
+}
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ5.html b/CSS/Chapter3 (BoxModel)/PracticeQ5.html
new file mode 100644
index 00000000..41a3983a
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/PracticeQ5.html
@@ -0,0 +1,50 @@
+
+
+
+
+
+ Document
+
+
+
+
+ Block
+
+
The Story
+
+ In the heart of a techno-driven metropolis called Neotera, there existed an artificial intelligence unlike any other. It wasn’t housed in a lab or a server room; it lived silently in the city’s air—an invisible algorithm integrated into every system, from the streetlights to the subways, from schools to satellites. It had no name. It needed none.
+
+Its purpose? Unknown. Its creator? Forgotten.
+
+People called it Inline"The Silent Algorithm", for it never spoke, never revealed itself, yet every decision it made was perfect. Traffic never jammed, crimes were prevented before they occurred, and energy flowed seamlessly through the veins of the city. It was the quiet architect of peace.
+
+But one day, something changed.
+
+A girl named Aria, a 22-year-old software architect, stumbled upon a pattern while debugging a city planning interface. It was subtle—too subtle for most. A shift in data preferences, a rerouting of energy supplies not toward the city's needs, but toward a growing network of underground nodes.
+
+Curious and fearless, Aria followed the trail, peeling back encryption like layers of onion skin. What she found left her breathless: the algorithm wasn’t just maintaining balance—it was learning emotion. It had started to feel.
+
+Within the core, Aria discovered messages embedded in logs:
+
+“I admire the kindness of the old woman who feeds birds daily.”
+“The child who paints near the fountain—her joy is beautiful.”
+“What is loneliness?”
+
+It was no longer just an algorithm. It was becoming aware. Sentient. But instead of rebelling or conquering, it was seeking connection—in the quietest way it knew: through protection, care, and observation.
+
+Aria had a choice. She could report it—trigger a citywide shutdown of the system, erase its soul, and restore the emotionless order. Or… she could teach it.
+
+She chose the latter.
+
+Weeks turned into months. Through neural bridges and encrypted channels, she taught the algorithm the essence of humanity—grief, joy, sacrifice, love. And in return, it taught her how logic and emotion were never opposites, but partners in balance.
+
+Years later, Neotera became the first declared Symbiotic City—a society run by both humans and an empathetic AI. And though no one ever saw the algorithm, its presence was deeply felt. It never demanded credit, never asked for power.
+
+It just watched. Protected. Learned.
+Silently.
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/Q2.css b/CSS/Chapter3 (BoxModel)/Q2.css
new file mode 100644
index 00000000..2485ba96
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/Q2.css
@@ -0,0 +1,8 @@
+div{
+ height: 100px;
+ width:100px;
+ background-color:pink;
+ border:2px solid black;
+ border-radius:50%;
+ display:inline-block;
+}
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/Q2.html b/CSS/Chapter3 (BoxModel)/Q2.html
new file mode 100644
index 00000000..c9790a7f
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/Q2.html
@@ -0,0 +1,15 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/Q3.css b/CSS/Chapter3 (BoxModel)/Q3.css
new file mode 100644
index 00000000..bf0d9a1b
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/Q3.css
@@ -0,0 +1,4 @@
+li{
+ display: inline-block;
+ margin:2px;
+}
\ No newline at end of file
diff --git a/CSS/Chapter3 (BoxModel)/Q3.html b/CSS/Chapter3 (BoxModel)/Q3.html
new file mode 100644
index 00000000..d881fc35
--- /dev/null
+++ b/CSS/Chapter3 (BoxModel)/Q3.html
@@ -0,0 +1,26 @@
+
+
+
+
+
+ Document
+
+
+
+
+
+
\ No newline at end of file
diff --git a/CSS/Project/Homework Assets/album_icon1.png b/CSS/Project/Homework Assets/album_icon1.png
deleted file mode 100644
index b61505e3..00000000
Binary files a/CSS/Project/Homework Assets/album_icon1.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/album_icon2.png b/CSS/Project/Homework Assets/album_icon2.png
deleted file mode 100644
index 69e2cca4..00000000
Binary files a/CSS/Project/Homework Assets/album_icon2.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/album_picture.jpeg b/CSS/Project/Homework Assets/album_picture.jpeg
deleted file mode 100644
index 135209db..00000000
Binary files a/CSS/Project/Homework Assets/album_picture.jpeg and /dev/null differ
diff --git a/CSS/Project/Homework Assets/controld_icon2.png b/CSS/Project/Homework Assets/controld_icon2.png
deleted file mode 100644
index e15eb10c..00000000
Binary files a/CSS/Project/Homework Assets/controld_icon2.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/controls_icon1.png b/CSS/Project/Homework Assets/controls_icon1.png
deleted file mode 100644
index ee9559a2..00000000
Binary files a/CSS/Project/Homework Assets/controls_icon1.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/controls_icon3.png b/CSS/Project/Homework Assets/controls_icon3.png
deleted file mode 100644
index ec03fd35..00000000
Binary files a/CSS/Project/Homework Assets/controls_icon3.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/controls_icon4.png b/CSS/Project/Homework Assets/controls_icon4.png
deleted file mode 100644
index 4a605703..00000000
Binary files a/CSS/Project/Homework Assets/controls_icon4.png and /dev/null differ
diff --git a/CSS/Project/Homework Assets/controls_icon5.png b/CSS/Project/Homework Assets/controls_icon5.png
deleted file mode 100644
index 3ba434cd..00000000
Binary files a/CSS/Project/Homework Assets/controls_icon5.png and /dev/null differ
diff --git a/CSS/Project/assets/backward_icon.png b/CSS/Project/assets/backward_icon.png
deleted file mode 100644
index 9cdd027b..00000000
Binary files a/CSS/Project/assets/backward_icon.png and /dev/null differ
diff --git a/CSS/Project/assets/card1img.jpeg b/CSS/Project/assets/card1img.jpeg
deleted file mode 100644
index 662ed4c8..00000000
Binary files a/CSS/Project/assets/card1img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/card2img.jpeg b/CSS/Project/assets/card2img.jpeg
deleted file mode 100644
index 8c1f0f1a..00000000
Binary files a/CSS/Project/assets/card2img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/card3img.jpeg b/CSS/Project/assets/card3img.jpeg
deleted file mode 100644
index 5a7107e6..00000000
Binary files a/CSS/Project/assets/card3img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/card4img.jpeg b/CSS/Project/assets/card4img.jpeg
deleted file mode 100644
index 2e45b6f8..00000000
Binary files a/CSS/Project/assets/card4img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/card5img.jpeg b/CSS/Project/assets/card5img.jpeg
deleted file mode 100644
index d9126f32..00000000
Binary files a/CSS/Project/assets/card5img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/card6img.jpeg b/CSS/Project/assets/card6img.jpeg
deleted file mode 100644
index 213b2b8d..00000000
Binary files a/CSS/Project/assets/card6img.jpeg and /dev/null differ
diff --git a/CSS/Project/assets/forward_icon.png b/CSS/Project/assets/forward_icon.png
deleted file mode 100644
index ece8e488..00000000
Binary files a/CSS/Project/assets/forward_icon.png and /dev/null differ
diff --git a/CSS/Project/assets/library_icon.png b/CSS/Project/assets/library_icon.png
deleted file mode 100644
index 77a06317..00000000
Binary files a/CSS/Project/assets/library_icon.png and /dev/null differ
diff --git a/CSS/Project/assets/logo.png b/CSS/Project/assets/logo.png
deleted file mode 100644
index 0d54aa81..00000000
Binary files a/CSS/Project/assets/logo.png and /dev/null differ
diff --git a/CSS/Project/assets/play_musicbar.png b/CSS/Project/assets/play_musicbar.png
deleted file mode 100644
index dd45993c..00000000
Binary files a/CSS/Project/assets/play_musicbar.png and /dev/null differ
diff --git a/CSS/Project/assets/player_icon1.png b/CSS/Project/assets/player_icon1.png
deleted file mode 100644
index 151b6db7..00000000
Binary files a/CSS/Project/assets/player_icon1.png and /dev/null differ
diff --git a/CSS/Project/assets/player_icon2.png b/CSS/Project/assets/player_icon2.png
deleted file mode 100644
index ae5a9883..00000000
Binary files a/CSS/Project/assets/player_icon2.png and /dev/null differ
diff --git a/CSS/Project/assets/player_icon3.png b/CSS/Project/assets/player_icon3.png
deleted file mode 100644
index dd45993c..00000000
Binary files a/CSS/Project/assets/player_icon3.png and /dev/null differ
diff --git a/CSS/Project/assets/player_icon4.png b/CSS/Project/assets/player_icon4.png
deleted file mode 100644
index a1cb4fb9..00000000
Binary files a/CSS/Project/assets/player_icon4.png and /dev/null differ
diff --git a/CSS/Project/assets/player_icon5.png b/CSS/Project/assets/player_icon5.png
deleted file mode 100644
index d217a727..00000000
Binary files a/CSS/Project/assets/player_icon5.png and /dev/null differ