diff --git a/CSS/Chapter2 (Selectors)/Parctice2.html b/CSS/Chapter2 (Selectors)/Parctice2.html new file mode 100644 index 0000000..1be6d61 --- /dev/null +++ b/CSS/Chapter2 (Selectors)/Parctice2.html @@ -0,0 +1,21 @@ + + + + CSS Assignment + + + +

CSS practice

+

Let's learn about selectors:

+

There are multiple selectors in css.

+

Some of them include class selector, id selector etc.

+

and we can also combine these too.

+
+

Did you like practice set?

+ + +
+ +
+ + \ No newline at end of file diff --git a/CSS/Chapter2 (Selectors)/Practice2.css b/CSS/Chapter2 (Selectors)/Practice2.css new file mode 100644 index 0000000..be56cb8 --- /dev/null +++ b/CSS/Chapter2 (Selectors)/Practice2.css @@ -0,0 +1,31 @@ +#mainTopic{ + color:blue; +} +*{ + text-align: center; +} +h1,h2,h3,h4,h5,h6{ + font-family: Georgia; +} +.para{ + color:white; + background-color: cornflowerblue; +} +div button{ + background-color: purple; + color:azure +} +button:hover{ + background-color: yellow; + color:blue; +} +p :nth-of-type(2n+1){ + color:yellow; +} +h1::first-letter{ + color:red; +} +input[type="checkbox"]:checked+label{ + color:darkgreen; + +} \ No newline at end of file diff --git a/CSS/Chapter2 (Selectors)/PracticeQs.css b/CSS/Chapter2 (Selectors)/PracticeQs.css new file mode 100644 index 0000000..edad3f6 --- /dev/null +++ b/CSS/Chapter2 (Selectors)/PracticeQs.css @@ -0,0 +1,13 @@ +*{ + font-family:'Courier New'; +} +h1{ + color:#1b74e4; +} +#searchbtn{ + color:white; + background-color: black; +} +.userbtn{ + background-color:aqua; +} \ No newline at end of file diff --git a/CSS/Chapter2 (Selectors)/index.css b/CSS/Chapter2 (Selectors)/index.css new file mode 100644 index 0000000..bac93fb --- /dev/null +++ b/CSS/Chapter2 (Selectors)/index.css @@ -0,0 +1,33 @@ +/* *{ + background-color:rgb(254, 254, 254); +} */ +span{ + color:#b92b27; +} +#login{ + background-color: white; +} +#signup:active{ + + background-color: #100f0f; + color:white; +} +#signup:hover{ + font-style: italic; +} +.upvote{ + background-color:grey; +} +#nav ul li a:hover{ + color:blueviolet; +} +#nav+p{ + color:red; +} +.new>button{ + color:azure; + background-color:black; +} +input[type="password"]{ + color:red; +} diff --git a/CSS/Chapter2 (Selectors)/index.html b/CSS/Chapter2 (Selectors)/index.html index 2264aa3..4e79979 100644 --- a/CSS/Chapter2 (Selectors)/index.html +++ b/CSS/Chapter2 (Selectors)/index.html @@ -5,25 +5,27 @@ CSS Chapter2 +
-

Quora +

Quora

- +
-
@@ -33,7 +35,7 @@

Quora

What is the highest salary for a spacex engineer?

- +
@@ -44,7 +46,7 @@

What is the highest salary for a spacex engineer?

What is the syllabus for JEE 2024?

- +
@@ -55,7 +57,7 @@

What is the syllabus for JEE 2024?

Why is the sky blue?

- +
@@ -65,8 +67,9 @@

Why is the sky blue?

Follow pqr

Why is the sky blue?

- - + + +
diff --git a/CSS/Chapter3 (BoxModel)/PracticeQ3.css b/CSS/Chapter3 (BoxModel)/PracticeQ3.css new file mode 100644 index 0000000..0af85aa --- /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 0000000..0f72e17 --- /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 0000000..022e3c6 --- /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 0000000..05df8c3 --- /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 0000000..dcff4b5 --- /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 0000000..41a3983 --- /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/Project/Homework Assets/album_icon1.png b/CSS/Project/Homework Assets/album_icon1.png deleted file mode 100644 index b61505e..0000000 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 69e2cca..0000000 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 135209d..0000000 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 e15eb10..0000000 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 ee9559a..0000000 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 ec03fd3..0000000 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 4a60570..0000000 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 3ba434c..0000000 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 9cdd027..0000000 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 662ed4c..0000000 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 8c1f0f1..0000000 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 5a7107e..0000000 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 2e45b6f..0000000 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 d9126f3..0000000 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 213b2b8..0000000 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 ece8e48..0000000 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 77a0631..0000000 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 0d54aa8..0000000 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 dd45993..0000000 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 151b6db..0000000 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 ae5a988..0000000 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 dd45993..0000000 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 a1cb4fb..0000000 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 d217a72..0000000 Binary files a/CSS/Project/assets/player_icon5.png and /dev/null differ