commit 8e5462f8dbc562106991357d3e508ec27e77cd58
Author: Arcron ArchLinux
Date: Sat Oct 26 14:55:49 2024 +0530
100Days
diff --git a/PycharmProjects/Arch Linux Logo/.idea/.gitignore b/PycharmProjects/Arch Linux Logo/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/PycharmProjects/Arch Linux Logo/.idea/Arch Linux Logo.iml b/PycharmProjects/Arch Linux Logo/.idea/Arch Linux Logo.iml
new file mode 100644
index 0000000..d0876a7
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/Arch Linux Logo.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/Project_Default.xml b/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..6db1d54
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/profiles_settings.xml b/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Arch Linux Logo/.idea/misc.xml b/PycharmProjects/Arch Linux Logo/.idea/misc.xml
new file mode 100644
index 0000000..e557d17
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/misc.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Arch Linux Logo/.idea/modules.xml b/PycharmProjects/Arch Linux Logo/.idea/modules.xml
new file mode 100644
index 0000000..0f163e8
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Arch Linux Logo/ArchLogo.py b/PycharmProjects/Arch Linux Logo/ArchLogo.py
new file mode 100644
index 0000000..05bfc6e
--- /dev/null
+++ b/PycharmProjects/Arch Linux Logo/ArchLogo.py
@@ -0,0 +1,50 @@
+from turtle import Turtle, Screen
+
+arch = Turtle()
+
+arch.penup()
+arch.goto(-200, -50)
+arch.pendown()
+arch.pencolor("dodgerblue3")
+arch.fillcolor("dodgerblue3")
+arch.begin_fill()
+arch.left(70)
+arch.forward(200)
+arch.right(90)
+arch.forward(50)
+arch.left(170)
+arch.forward(50)
+arch.right(80)
+arch.forward(100)
+
+arch.right(130)
+arch.forward(200)
+arch.right(90)
+arch.forward(50)
+arch.left(170)
+arch.forward(50)
+arch.right(80)
+arch.forward(120)
+arch.right(140)
+arch.forward(120)
+arch.right(75)
+arch.circle(35, 191)
+arch.right(68)
+arch.forward(100)
+arch.end_fill()
+arch.hideturtle()
+arch.penup()
+
+arch.setx(-175.0)
+arch.sety(-85.0)
+arch.pencolor("dodgerblue3")
+arch.write("Arch", font=("Arial", 30, "bold"))
+
+arch.setx(-58.0)
+arch.sety(-85.0)
+arch.pencolor("black")
+arch.write("Linux", font=("Arial", 30, "bold"))
+
+
+screen = Screen()
+screen.exitonclick()
diff --git a/PycharmProjects/Pong-Game/.idea/.gitignore b/PycharmProjects/Pong-Game/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/PycharmProjects/Pong-Game/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/PycharmProjects/Pong-Game/.idea/Pong-Game.iml b/PycharmProjects/Pong-Game/.idea/Pong-Game.iml
new file mode 100644
index 0000000..d0876a7
--- /dev/null
+++ b/PycharmProjects/Pong-Game/.idea/Pong-Game.iml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Pong-Game/.idea/inspectionProfiles/Project_Default.xml b/PycharmProjects/Pong-Game/.idea/inspectionProfiles/Project_Default.xml
new file mode 100644
index 0000000..18eac75
--- /dev/null
+++ b/PycharmProjects/Pong-Game/.idea/inspectionProfiles/Project_Default.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Pong-Game/.idea/inspectionProfiles/profiles_settings.xml b/PycharmProjects/Pong-Game/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/PycharmProjects/Pong-Game/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/PycharmProjects/Pong-Game/.idea/misc.xml b/PycharmProjects/Pong-Game/.idea/misc.xml
new file mode 100644
index 0000000..a50ac5b
--- /dev/null
+++ b/PycharmProjects/Pong-Game/.idea/misc.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/goal.png b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/goal.png
new file mode 100644
index 0000000..07ae64e
Binary files /dev/null and b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/goal.png differ
diff --git a/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/index.html b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/index.html
new file mode 100644
index 0000000..6398125
--- /dev/null
+++ b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/index.html
@@ -0,0 +1,25 @@
+
First paragraph. It is very important to take care of the patient, and the patient will be followed by the patient, but it is a time of great pain and suffering
+ some Arc course of life homework. In the fans, if only the head of football, the author of the life of football is promoting football. Unless it's fun
+ great ease. Diam let the fans take care of the adipiscing and drink it whole. Who himself suspended basketball
+ It was said to be pregnant. Euismod element unless someone is eleifend. They live in old age and disease. He loves the fans
+ adipiscing is to be drunk whole. Viverra orci sagittis eu volutpat hate facilisis mauris. Unless someone
+ eleifend than adipiscing Neither the valley of tomorrow is always the author nor of life. Not a great warm-up for soccer goals. Long live the bow
+ the cat should be drunk to be sad and I just don't need a basketball player. In life's ugly mass but the element of time. football
+ but who benefits from the easy disease? By drinking some arrow, the element of life will be taken care of.
+
+
Second paragraph. He accepts the adipiscing to be drunk. I'm not going to make it any easier tomorrow. The need for trucks is present
+ great sadness It is said that the vestibule lived in this street. Decorate the cartoon hospital with football arrows. Let it be fun
+ invest in He did not take a pillow or a laoreet at the gate of the hospital. I don't want to drink in football
+ homework For the ugly football needs the price of the bronze quiver and the investment. Pure chocolate with therapeutic arrows
+ he always needs a home. The need of the fringilla phasellus faucibus chocolate eleifend until the price. Condiment
+ lacinia who or eros until and hate.
+
+
Third paragraph. It's not pure in the soft now but it's always a smile. The course of the life of the house from the arch of the house. A ridiculous mouse
+ The whole life of the Ultricies Leo is expected now. In the land of the entire region Lettus mauris ultrices eros in
+ high school courses Needs care and medical attention. Massa massa ultricies mi quis hendrerit dolor. How
+ The element of the pillow is not even that the lake hangs from the throat sometimes. But now it is aimed at the propaganda lake cartoon. To decorate it
+ I hate the bow as if I had no quiver. Amet luctus venenatis a great fringilla urn porttitor. Football fans are now my very own
+ the throats of life, nor the heart. Now for real estate as a land element arrows. Mauris augue is not pregnant
+ warmth and care. Children live in a sad old age. Sad old age and grandchildren. Ugly
+ but time is needed, the urn and the quiver quiver. Let us live in flight, but it is said that we need the bow of the propagandist. But the lake
+ The climber was said to have lived in this street. As the sauce is poisoned by the sauce of life.
\ No newline at end of file
diff --git a/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/solution.html b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/solution.html
new file mode 100644
index 0000000..66d95da
--- /dev/null
+++ b/Web Development Python Projects/2.2+Paragraph+Element/2.2 Paragraph Element/solution.html
@@ -0,0 +1,73 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
First paragraph. Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna
+aliqua. Arcu cursus vitae congue mauris. In nisl nisi scelerisque eu ultrices vitae auctor eu augue. Nisi est sit amet
+facilisis magna. Diam sit amet nisl suscipit adipiscing bibendum est ultricies integer. Quis ipsum suspendisse ultrices
+gravida dictum fusce ut. Euismod elementum nisi quis eleifend. Habitant morbi tristique senectus et. Amet nisl suscipit
+adipiscing bibendum est ultricies integer. Viverra orci sagittis eu volutpat odio facilisis mauris sit. Nisi quis
+eleifend quam adipiscing. Neque convallis a cras semper auctor neque vitae. Magna fermentum iaculis eu non. Vivamus arcu
+felis bibendum ut tristique et. Justo nec ultrices dui sapien eget mi. In vitae turpis massa sed elementum tempus. Eu
+facilisis sed odio morbi quis commodo. Sagittis aliquam malesuada bibendum arcu vitae elementum curabitur vitae.
+
+
Second paragraph. Suscipit adipiscing bibendum est ultricies. Tortor aliquam nulla facilisi cras fermentum. Eget aliquet nibh praesent
+tristique magna. In hac habitasse platea dictumst vestibulum. Ornare quam viverra orci sagittis eu. Sit amet est
+placerat in. Proin fermentum leo vel orci porta non pulvinar neque laoreet. Turpis in eu mi bibendum neque egestas
+congue. Enim eu turpis egestas pretium aenean pharetra magna ac placerat. Ultrices sagittis orci a scelerisque purus
+semper eget duis at. Egestas egestas fringilla phasellus faucibus scelerisque eleifend donec pretium. Condimentum
+lacinia quis vel eros donec ac odio.
+
+
Third paragraph. Nisl purus in mollis nunc sed id semper risus. Ipsum a arcu cursus vitae congue mauris rhoncus aenean. Ridiculus mus
+mauris vitae ultricies leo integer malesuada nunc. In tellus integer feugiat scelerisque. Lectus mauris ultrices eros in
+cursus turpis massa. Sollicitudin ac orci phasellus egestas. Massa massa ultricies mi quis hendrerit dolor. Quam
+elementum pulvinar etiam non quam lacus suspendisse faucibus interdum. Iaculis nunc sed augue lacus viverra. Id ornare
+arcu odio ut sem nulla pharetra. Amet luctus venenatis lectus magna fringilla urna porttitor. Eu nisl nunc mi ipsum
+faucibus vitae aliquet nec ullamcorper. Nunc mattis enim ut tellus elementum sagittis. Mauris augue neque gravida in
+fermentum et sollicitudin. Pellentesque habitant morbi tristique senectus. Tristique senectus et netus et. Turpis
+egestas sed tempus urna et pharetra pharetra. Feugiat vivamus at augue eget arcu dictum varius duis at. Lacus sed
+viverra tellus in hac habitasse platea dictumst vestibulum. Nisl condimentum id venenatis a condimentum vitae sapien.
\ No newline at end of file
diff --git a/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/goal.png b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/goal.png
new file mode 100644
index 0000000..c4379d1
Binary files /dev/null and b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/goal.png differ
diff --git a/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/index.html b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/index.html
new file mode 100644
index 0000000..f0d7b65
--- /dev/null
+++ b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/index.html
@@ -0,0 +1,16 @@
+
Dr. Ahmed Sameer
+
+
Old D-30
+ IIT(ISM)
+ Dhanbad
+ India
+
+
+
+
Ahmed Sameer (16 July 1984 - Till date) Is a very huge fan and expert in Psychology he can solve tons of Psychology problems in his head he is
+ known for making exteremely tough Psychology papers and exams.
+
+
Although he is a great Psychologist he is a fan of programming and loves trying out new operating systems some of his favourites are Linux Mint,
+ and Ubuntu and loves his family dearly.
William Blake (28 November 1757 - 12 August 1827) was an English poet, painter, and printmaker. Largely unrecognised
+during his life, Blake is now considered a seminal figure in the history of the poetry and visual art of the Romantic
+Age. What he called his "prophetic works" were said by 20th-century critic Northrop Frye to form "what is in proportion
+to its merits the least read body of poetry in the English language".[2] His visual artistry led 21st-century critic
+Jonathan Jones to proclaim him "far and away the greatest artist Britain has ever produced".[3] In 2002, Blake was
+placed at number 38 in the BBC's poll of the 100 Greatest Britons.[4] While he lived in London his entire life, except
+for three years spent in Felpham,[5] he produced a diverse and symbolically rich collection of works, which embraced the
+imagination as "the body of God"[6] or "human existence itself".[7]
+
+
Although Blake was considered mad by contemporaries for his idiosyncratic views, he is held in high regard by later
+critics for his expressiveness and creativity, and for the philosophical and mystical undercurrents within his work. His
+paintings and poetry have been characterised as part of the Romantic movement and as "Pre-Romantic".[8] In fact, he has
+been said to be "a key early proponent of both Romanticism and Nationalism".[9] A committed Christian who was hostile to
+the Church of England (indeed, to almost all forms of organised religion), Blake was influenced by the ideals and
+ambitions of the French and American revolutions.[10][11] Though later he rejected many of these political beliefs, he
+maintained an amiable relationship with the political activist Thomas Paine; he was also influenced by thinkers such as
+Emanuel Swedenborg.[12] Despite these known influences, the singularity of Blake's work makes him difficult to classify.
+The 19th-century scholar William Michael Rossetti characterised him as a "glorious luminary",[13] and "a man not
+forestalled by predecessors, nor to be classed with contemporaries, nor to be replaced by known or readily surmisable
+successors".[14]
\ No newline at end of file
diff --git a/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/goal.png b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/goal.png
new file mode 100644
index 0000000..b210b04
Binary files /dev/null and b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/goal.png differ
diff --git a/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/index.html b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/index.html
new file mode 100644
index 0000000..3bd1ba3
--- /dev/null
+++ b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/index.html
@@ -0,0 +1,15 @@
+
+
+
The Best Movies According to Ibrahim
+
My top 3 movies of all-time.
+
+
+
+
The Penguins Of Madagascar
+
The best childhood movie i had ever seen. There zoo animals can speak embark on adventures escape from the zoo and the best part both adult
+ and children can watch it.
+
Harry Potter
+
This is also the best childhood movie that I had ever seen it is based on J.K Rowling's work on the Harry Potter novels. there is a trio of friends
+ who also embark on adventures together to defeat Lord Voldemort.
+
Chicken Run
+
Very artistic movie. Both children and adults can watch it. There is a family of chickens who want to excape a evil farmer who wants to eat them.
\ No newline at end of file
diff --git a/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/solution.html b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/solution.html
new file mode 100644
index 0000000..195fa9a
--- /dev/null
+++ b/Web Development Python Projects/2.4+Movie+Ranking+Project/2.4 Movie Ranking Project/solution.html
@@ -0,0 +1,57 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
The Best Movies According to Angela
+
My top 3 movies of all-time.
+
+
Spirited Away
+
This is my favourite anime. I love the beautiful images.
+
Ex Machina
+
Really cool sci-fi movie.
+
Drive
+
Super beautiful film. Really artistic.
\ No newline at end of file
diff --git a/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/goal.png b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/goal.png
new file mode 100644
index 0000000..2a1a23d
Binary files /dev/null and b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/goal.png differ
diff --git a/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/index.html b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/index.html
new file mode 100644
index 0000000..1ddacc9
--- /dev/null
+++ b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/index.html
@@ -0,0 +1,37 @@
+
Angela's Cinnamon Roll Recipe
+
+
Ingredients
+
+
For the dough:
+
+
¾ cup warm milk
+
2 ¼ teaspoons yeast
+
¼ cup granulated sugar
+
1 egg plus 1 egg yolk
+
¼ cup butter
+
3 cups bread flour
+
+
+
+
For the filling:
+
+
2/3 cup dark brown sugar
+
1 ½ tablespoons ground cinnamon
+
¼ cup butter
+
+
+
+
Instructions
+
+
+
Mix the milk with the yeast, sugar, eggs.
+
Melt the butter and add to the mixture.
+
Add in the flour and mix until combined into a dough.
+
Knead the dough for 10 minuites.
+
Transfer the dough into a large bowl and cover with plastic wrap. Leave it somewhere to rise for 2 hours.
+
After the dough has doubled in size, roll it out into a large rectangle.
+
Melt the butter for the filling and mix in the sugar and cinnamon.
+
Spread the filling onto the dough then roll the dough into a swiss roll.
+
Cut the roll into 3cm sections and place flat into a baking tray.
+
Pre-heat the oven to 350F or 180C, then bake the rolls for 20-25min until lightly brown.
Add in the flour and mix until combined into a dough.
+
Knead the dough for 10 minuites.
+
Transfer the dough into a large bowl and cover with plastic wrap. Leave it somewhere to rise for 2 hours.
+
After the dough has doubled in size, roll it out into a large rectangle.
+
Melt the butter for the filling and mix in the sugar and cinnamon.
+
Spread the filling onto the dough then roll the dough into a swiss roll.
+
Cut the roll into 3cm sections and place flat into a baking tray.
+
Preheat the oven to 350F or 180C, then bake the rolls for 20-25min until lightly brown.
+
\ No newline at end of file
diff --git a/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/goal.png b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/goal.png
new file mode 100644
index 0000000..7c6066c
Binary files /dev/null and b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/goal.png differ
diff --git a/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/index.html b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/index.html
new file mode 100644
index 0000000..0e6c273
--- /dev/null
+++ b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/index.html
@@ -0,0 +1,31 @@
+
+
+
+
A
+
B
+
+
B1
+
B2
+
+
B2a
+
+
B2aa
+
B2ab
+
+
+
B2b
+
B2c
+
+
+
B3
+
+
B31
+
B32
+
+
+
+
C
+
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/solution.html b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/solution.html
new file mode 100644
index 0000000..e6fd1a1
--- /dev/null
+++ b/Web Development Python Projects/3.1+Nesting+and+Indentation/3.1 Nesting and Indentation/solution.html
@@ -0,0 +1,82 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A
+
+ B
+
+
B1
+
B2
+
+
B2a
+
+
B2aa
+
B2ab
+
+
+
B2b
+
B2c
+
+
+
B3
+
+
B31
+
B32
+
+
+
+
+
C
+
\ No newline at end of file
diff --git a/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/goal.png b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/goal.png
new file mode 100644
index 0000000..751ba5e
Binary files /dev/null and b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/goal.png differ
diff --git a/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/index.html b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/index.html
new file mode 100644
index 0000000..b2b574c
--- /dev/null
+++ b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/index.html
@@ -0,0 +1,29 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal1.png b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal1.png
new file mode 100644
index 0000000..7378b24
Binary files /dev/null and b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal1.png differ
diff --git a/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal2.png b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal2.png
new file mode 100644
index 0000000..9c629f2
Binary files /dev/null and b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/goal2.png differ
diff --git a/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/index.html b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/index.html
new file mode 100644
index 0000000..55c99fa
--- /dev/null
+++ b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/index.html
@@ -0,0 +1,10 @@
+
+
I USE UBUNTU!
+
+
+
+
+
I USE ARCH BTW MAN!
+
+
+
Now what have you got to say Ubuntu huh you think you are better than me!
\ No newline at end of file
diff --git a/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution1.html b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution1.html
new file mode 100644
index 0000000..221ab1b
--- /dev/null
+++ b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution1.html
@@ -0,0 +1,3 @@
+
I am a Cat Person
+
+
diff --git a/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution2.html b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution2.html
new file mode 100644
index 0000000..0b18375
--- /dev/null
+++ b/Web Development Python Projects/3.3+Image+Elements/3.3 Image Elements/solution2.html
@@ -0,0 +1,2 @@
+
I am a Dog Person
+
\ No newline at end of file
diff --git a/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/goal.png b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/goal.png
new file mode 100644
index 0000000..14311d6
Binary files /dev/null and b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/goal.png differ
diff --git a/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/index.html b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/index.html
new file mode 100644
index 0000000..add2b1e
--- /dev/null
+++ b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/index.html
@@ -0,0 +1,23 @@
+
It's My Birthday!
+
+
On the 21st October
+
+
+
+
+
+
+
What to bring:
+
+
+
Baloons(I love baloons)
+
Cake(I'm really good at eating)
+
An appetite(There will be lots of food)
+
Gifts(I am expecting gifts from you all love em)
+
+
+
+
This is where you need to go:
+
+This is the Google Map Link to where you need to go!
\ No newline at end of file
diff --git a/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/solution.html b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/solution.html
new file mode 100644
index 0000000..4fccfb3
--- /dev/null
+++ b/Web Development Python Projects/3.4+Birthday+Invite+Project/3.4 Birthday Invite Project/solution.html
@@ -0,0 +1,18 @@
+
+
It's My Birthday!
+
On the 12th May
+
+
+
+
What to bring:
+
+
Baloons (I love baloons)
+
Cake (I'm really good at eating)
+
An appetite (There will be lots of food)
+
+
+
This is where you need to go:
+Google
+ map link
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/external.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/external.html
new file mode 100644
index 0000000..5ed42e4
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/external.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+ External
+
+
+
+
+
Style Me in Green
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/inline.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/inline.html
new file mode 100644
index 0000000..8209225
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/inline.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Inline
+
+
+
+
Style Me in Blue!
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/internal.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/internal.html
new file mode 100644
index 0000000..bc6b982
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/internal.html
@@ -0,0 +1,18 @@
+
+
+
+
+
+ Internal
+
+
+
+
+
Style Me in Red!
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/solution.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/solution.html
new file mode 100644
index 0000000..eb897c6
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/solution.html
@@ -0,0 +1,17 @@
+
+
+
+
+
+ Adding CSS
+
+
+
+
Three Methods of Adding CSS
+
+ Inline
+ Internal
+ External
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/style.css b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/style.css
new file mode 100644
index 0000000..6345fd3
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/Solution/style.css
@@ -0,0 +1,3 @@
+h1 {
+ color: green;
+}
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/external.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/external.html
new file mode 100644
index 0000000..f047eb5
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/external.html
@@ -0,0 +1,10 @@
+
+
+
+
+ External
+
+
+
Style Me in Green
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/index.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/index.html
new file mode 100644
index 0000000..3f43204
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/index.html
@@ -0,0 +1,14 @@
+
+
+
+
+
+ Adding CSS
+
+
+
+
Three Methods of Adding CSS
+
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/inline.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/inline.html
new file mode 100644
index 0000000..df8142d
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/inline.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Inline
+
+
+
+
Style Me in Blue!
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/internal.html b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/internal.html
new file mode 100644
index 0000000..9be4dd4
--- /dev/null
+++ b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/internal.html
@@ -0,0 +1,13 @@
+
+
+
+
+
+ Internal
+
+
+
+
Style Me in Red!
+
+
+
\ No newline at end of file
diff --git a/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/style.css b/Web Development Python Projects/5.1+Adding+CSS/5.1. Adding CSS/style.css
new file mode 100644
index 0000000..e69de29