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/PycharmProjects/Pong-Game/.idea/modules.xml b/PycharmProjects/Pong-Game/.idea/modules.xml new file mode 100644 index 0000000..68d10e2 --- /dev/null +++ b/PycharmProjects/Pong-Game/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/PycharmProjects/Pong-Game/__pycache__/ball.cpython-311.pyc b/PycharmProjects/Pong-Game/__pycache__/ball.cpython-311.pyc new file mode 100644 index 0000000..5c1b63d Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/ball.cpython-311.pyc differ diff --git a/PycharmProjects/Pong-Game/__pycache__/ball.cpython-312.pyc b/PycharmProjects/Pong-Game/__pycache__/ball.cpython-312.pyc new file mode 100644 index 0000000..c602990 Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/ball.cpython-312.pyc differ diff --git a/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-311.pyc b/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-311.pyc new file mode 100644 index 0000000..106d4c4 Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-311.pyc differ diff --git a/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-312.pyc b/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-312.pyc new file mode 100644 index 0000000..71d0e99 Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/paddle.cpython-312.pyc differ diff --git a/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-311.pyc b/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-311.pyc new file mode 100644 index 0000000..4533a29 Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-311.pyc differ diff --git a/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-312.pyc b/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-312.pyc new file mode 100644 index 0000000..a489e56 Binary files /dev/null and b/PycharmProjects/Pong-Game/__pycache__/scoreboard.cpython-312.pyc differ diff --git a/PycharmProjects/Pong-Game/ball.py b/PycharmProjects/Pong-Game/ball.py new file mode 100644 index 0000000..9ef29cc --- /dev/null +++ b/PycharmProjects/Pong-Game/ball.py @@ -0,0 +1,30 @@ +from turtle import Turtle + + +class Ball(Turtle): + + def __init__(self): + super().__init__() + self.color("white") + self.shape("circle") + self.penup() + self.x_move = 10 + self.y_move = 10 + self.move_speed = 0.1 + + def move(self): + new_x = self.xcor() + self.x_move + new_y = self.ycor() + self.y_move + self.goto(new_x, new_y) + + def bounce_y(self): + self.y_move *= -1 + + def bounce_x(self): + self.x_move *= -1 + self.move_speed *= 0.9 + + def reset_position(self): + self.goto(0, 0) + self.move_speed = 0.1 + self.bounce_x() diff --git a/PycharmProjects/Pong-Game/main.py b/PycharmProjects/Pong-Game/main.py new file mode 100644 index 0000000..972fc6d --- /dev/null +++ b/PycharmProjects/Pong-Game/main.py @@ -0,0 +1,49 @@ +from turtle import Screen, Turtle +from paddle import Paddle +from ball import Ball +from scoreboard import Scoreboard +import time + +screen = Screen() +screen.bgcolor("black") +screen.setup(width=2000, height=1000) +screen.title("PONG GAME") +screen.tracer(0) + + +r_paddle = Paddle((900, 0)) +l_paddle = Paddle((-900, 0)) +ball = Ball() +scoreboard = Scoreboard() + +screen.listen() +screen.onkey(r_paddle.go_up, "Up") +screen.onkey(r_paddle.go_down, "Down") +screen.onkey(l_paddle.go_up, "w") +screen.onkey(l_paddle.go_down, "s") + +game_is_on = True +while game_is_on: + time.sleep(ball.move_speed) + screen.update() + ball.move() + + #Detect collisions with wall + if ball.ycor() > 485 or ball.ycor() < -485: + ball.bounce_y() + + #Detect collision with paddle + if ball.distance(r_paddle) < 40 and ball.xcor() > 340 or ball.distance(l_paddle) < 40 and ball.xcor() < -340: + ball.bounce_x() + + #Detect when r paddle misses + if ball.xcor() > 940: + ball.reset_position() + scoreboard.l_point() + + #Detect when l paddle misses + if ball.xcor() < -940: + ball.reset_position() + scoreboard.r_point() + +screen.exitonclick() diff --git a/PycharmProjects/Pong-Game/paddle.py b/PycharmProjects/Pong-Game/paddle.py new file mode 100644 index 0000000..06e2e58 --- /dev/null +++ b/PycharmProjects/Pong-Game/paddle.py @@ -0,0 +1,20 @@ +from turtle import Turtle + + +class Paddle(Turtle): + + def __init__(self, position): + super().__init__() + self.shape("square") + self.color("white") + self.shapesize(stretch_wid=5, stretch_len=1) + self.penup() + self.goto(position) + + def go_up(self): + new_y = self.ycor() + 20 + self.goto(self.xcor(), new_y) + + def go_down(self): + new_y = self.ycor() - 20 + self.goto(self.xcor(), new_y) diff --git a/PycharmProjects/Pong-Game/scoreboard.py b/PycharmProjects/Pong-Game/scoreboard.py new file mode 100644 index 0000000..0856ae1 --- /dev/null +++ b/PycharmProjects/Pong-Game/scoreboard.py @@ -0,0 +1,28 @@ +from turtle import Turtle + +class Scoreboard(Turtle): + + def __init__(self): + super().__init__() + self.color("white") + self.penup() + self.hideturtle() + self.l_score = 0 + self.r_score = 0 + self.update_scoreboard() + + def update_scoreboard(self): + self.clear() + self.goto(-300, 380) + self.write(self.l_score, align="center", font=("courier", 80, "normal")) + self.goto(300, 380) + self.write(self.r_score, align="center", font=("courier", 80, "normal")) + + + def l_point(self): + self.l_score += 1 + self.update_scoreboard() + + def r_point(self): + self.r_score += 1 + self.update_scoreboard() \ No newline at end of file diff --git a/PycharmProjects/Snake Game/.idea/.gitignore b/PycharmProjects/Snake Game/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/PycharmProjects/Snake Game/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/PycharmProjects/Snake Game/.idea/Snake Game.iml b/PycharmProjects/Snake Game/.idea/Snake Game.iml new file mode 100644 index 0000000..d0876a7 --- /dev/null +++ b/PycharmProjects/Snake Game/.idea/Snake Game.iml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/PycharmProjects/Snake Game/.idea/inspectionProfiles/profiles_settings.xml b/PycharmProjects/Snake Game/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000..105ce2d --- /dev/null +++ b/PycharmProjects/Snake Game/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ + + + + \ No newline at end of file diff --git a/PycharmProjects/Snake Game/.idea/misc.xml b/PycharmProjects/Snake Game/.idea/misc.xml new file mode 100644 index 0000000..a50ac5b --- /dev/null +++ b/PycharmProjects/Snake Game/.idea/misc.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/PycharmProjects/Snake Game/.idea/modules.xml b/PycharmProjects/Snake Game/.idea/modules.xml new file mode 100644 index 0000000..3404b00 --- /dev/null +++ b/PycharmProjects/Snake Game/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/PycharmProjects/Snake Game/Main.Py b/PycharmProjects/Snake Game/Main.Py new file mode 100644 index 0000000..6b77921 --- /dev/null +++ b/PycharmProjects/Snake Game/Main.Py @@ -0,0 +1,48 @@ +from turtle import Screen +from snake import Snake +from food import Food +from scoreborad import Scoreboard +import time + +screen = Screen() +screen.setup(width=600, height=600) +screen.bgcolor("black") +screen.title("!!SNAKE GAME!!") +screen.tracer(0) + +snake = Snake() +food = Food() +scoreboard = Scoreboard() + +screen.listen() +screen.onkey(snake.up, "Up") +screen.onkey(snake.down, "Down") +screen.onkey(snake.left, "Left") +screen.onkey(snake.right, "Right") + +game_is_on = True +while game_is_on: + screen.update() + time.sleep(0.1) + snake.move() + + #Detect collision with food. + if snake.head.distance(food) < 15: + food.refresh() + snake.extend() + scoreboard.increase_score() + + #Detect collision with wall. + if snake.head.xcor() > 950 or snake.head.xcor() < -950 or snake.head.ycor() > 482 or snake.head.ycor() < -482: + scoreboard.reset() + snake.reset() + + #Detect collision with tail. + for segment in snake.segments[1:]: + if segment in snake.segments: + pass + elif snake.head.distance(segment) < 10: + scoreboard.reset() + snake.reset() + +screen.exitonclick() diff --git a/PycharmProjects/Snake Game/__pycache__/food.cpython-312.pyc b/PycharmProjects/Snake Game/__pycache__/food.cpython-312.pyc new file mode 100644 index 0000000..7ee21db Binary files /dev/null and b/PycharmProjects/Snake Game/__pycache__/food.cpython-312.pyc differ diff --git a/PycharmProjects/Snake Game/__pycache__/scoreborad.cpython-312.pyc b/PycharmProjects/Snake Game/__pycache__/scoreborad.cpython-312.pyc new file mode 100644 index 0000000..109e0b9 Binary files /dev/null and b/PycharmProjects/Snake Game/__pycache__/scoreborad.cpython-312.pyc differ diff --git a/PycharmProjects/Snake Game/__pycache__/snake.cpython-312.pyc b/PycharmProjects/Snake Game/__pycache__/snake.cpython-312.pyc new file mode 100644 index 0000000..46aa462 Binary files /dev/null and b/PycharmProjects/Snake Game/__pycache__/snake.cpython-312.pyc differ diff --git a/PycharmProjects/Snake Game/data.txt b/PycharmProjects/Snake Game/data.txt new file mode 100644 index 0000000..c227083 --- /dev/null +++ b/PycharmProjects/Snake Game/data.txt @@ -0,0 +1 @@ +0 \ No newline at end of file diff --git a/PycharmProjects/Snake Game/food.py b/PycharmProjects/Snake Game/food.py new file mode 100644 index 0000000..db1f1f3 --- /dev/null +++ b/PycharmProjects/Snake Game/food.py @@ -0,0 +1,19 @@ +from turtle import Turtle +import random + + +class Food(Turtle): + + def __init__(self): + super().__init__() + self.shape("circle") + self.penup() + self.shapesize(stretch_len=1.0, stretch_wid=1.0) + self.color("red") + self.speed("fastest") + self.refresh() + + def refresh(self): + random_x = random.randint(-280, 280) + random_y = random.randint(-280, 280) + self.goto(random_x, random_y) diff --git a/PycharmProjects/Snake Game/scoreborad.py b/PycharmProjects/Snake Game/scoreborad.py new file mode 100644 index 0000000..fb95b65 --- /dev/null +++ b/PycharmProjects/Snake Game/scoreborad.py @@ -0,0 +1,32 @@ +from turtle import Turtle +ALIGNMENT = "center" +FONT = ("Courier", 21, "normal") + +class Scoreboard(Turtle): + + def __init__(self): + super().__init__() + self.score = 0 + with open("data.txt") as data: + self.high_score = int(data.read()) + self.color("white") + self.penup() + self.goto(0, 460) + self.hideturtle() + self.update_scoreboard() + + def update_scoreboard(self): + self.clear() + self.write(f"Score: {self.score} High Score: {self.high_score}", align=ALIGNMENT, font=FONT) + + def reset(self): + if self.score > self.high_score: + self.high_score = self.score + with open("data.txt", mode="w") as data: + data.write(f"{self.high_score}") + self.score = 0 + self.update_scoreboard() + + def increase_score(self): + self.score += 1 + self.update_scoreboard() diff --git a/PycharmProjects/Snake Game/snake.py b/PycharmProjects/Snake Game/snake.py new file mode 100644 index 0000000..77b8af2 --- /dev/null +++ b/PycharmProjects/Snake Game/snake.py @@ -0,0 +1,57 @@ +from turtle import Turtle +STARTING_POSITION = [(0, 0), (-20, 0), (-40, 0)] +MOVE_DISTANCE = 20 +UP = 90 +DOWN = 270 +LEFT = 180 +RIGHT = 0 + +class Snake: + + def __init__(self): + self.segments = [] + self.create_snake() + self.head = self.segments[0] + + def create_snake(self): + for position in STARTING_POSITION: + self.add_segment(position) + def add_segment(self, position): + new_segment = Turtle("square") + new_segment.color("white") + new_segment.penup() + new_segment.goto(position) + self.segments.append(new_segment) + + def reset(self): + for seg in self.segments: + seg.goto(3000, 3000) + self.segments.clear() + self.create_snake() + self.head = self.segments[0] + + def extend(self): + self.add_segment(self.segments[-1].position()) + + def move(self): + for seg_num in range(len(self.segments) - 1, 0, -1): + new_x = self.segments[seg_num - 1].xcor() + new_y = self.segments[seg_num - 1].ycor() + self.segments[seg_num].goto(new_x, new_y) + self.head.forward(MOVE_DISTANCE) + + def up(self): + if self.head.heading() != DOWN: + self.head.setheading(UP) + + def down(self): + if self.head.heading() != UP: + self.head.setheading(DOWN) + + def left(self): + if self.head.heading() != RIGHT: + self.head.setheading(LEFT) + + def right(self): + if self.head.heading() != LEFT: + self.head.setheading(RIGHT) diff --git a/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/goal.png b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/goal.png new file mode 100644 index 0000000..562d9c0 Binary files /dev/null and b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/goal.png differ diff --git a/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/index.html b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/index.html new file mode 100644 index 0000000..b1310b2 --- /dev/null +++ b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/index.html @@ -0,0 +1,10 @@ +

Book

+

Chapter 1

+

Section 1

+

Section 2

+

Chapter 2

+

Section 1

+

Diagram 1

+

Chapter 3

+

Section 1

+

Section 2

diff --git a/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/solution.html b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/solution.html new file mode 100644 index 0000000..d0d9026 --- /dev/null +++ b/Web Development Python Projects/2.1+Heading+Element/2.1 Heading Element/solution.html @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Book

+

Chapter 1

+

Section 1

+

Section 2

+

Chapter 2

+

Section 1

+

Diagram 1

+

Chapter 3

+

Section 1

+

Section 2

\ 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.

+ + diff --git a/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/solution.html b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/solution.html new file mode 100644 index 0000000..b4c5fb4 --- /dev/null +++ b/Web Development Python Projects/2.3+Void+Elements/2.3 Void Elements/solution.html @@ -0,0 +1,82 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

William Blake

+ +

+17 south molton street
+London
+W1K 5QT
+UK
+

+ +
+ +

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:

+ + + +

For the filling:

+ + + +

Instructions

+ +
    +
  1. Mix the milk with the yeast, sugar, eggs.
  2. +
  3. Melt the butter and add to the mixture.
  4. +
  5. Add in the flour and mix until combined into a dough.
  6. +
  7. Knead the dough for 10 minuites.
  8. +
  9. Transfer the dough into a large bowl and cover with plastic wrap. Leave it somewhere to rise for 2 hours.
  10. +
  11. After the dough has doubled in size, roll it out into a large rectangle.
  12. +
  13. Melt the butter for the filling and mix in the sugar and cinnamon.
  14. +
  15. Spread the filling onto the dough then roll the dough into a swiss roll.
  16. +
  17. Cut the roll into 3cm sections and place flat into a baking tray.
  18. +
  19. Pre-heat the oven to 350F or 180C, then bake the rolls for 20-25min until lightly brown.
  20. +
diff --git a/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/solution.html b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/solution.html new file mode 100644 index 0000000..fe34d16 --- /dev/null +++ b/Web Development Python Projects/3.0+List+Elements/3.0 List Elements/solution.html @@ -0,0 +1,86 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Angela's Recipe for the Best Cinnamon Rolls

+ +

Ingredients

+ +

For the dough:

+ + +

For the filling:

+ + + +

Instructions

+ +
    +
  1. Mix the milk with the yeast, sugar, eggs.
  2. +
  3. Melt the butter and add to the mixture.
  4. +
  5. Add in the flour and mix until combined into a dough.
  6. +
  7. Knead the dough for 10 minuites.
  8. +
  9. Transfer the dough into a large bowl and cover with plastic wrap. Leave it somewhere to rise for 2 hours.
  10. +
  11. After the dough has doubled in size, roll it out into a large rectangle.
  12. +
  13. Melt the butter for the filling and mix in the sugar and cinnamon.
  14. +
  15. Spread the filling onto the dough then roll the dough into a swiss roll.
  16. +
  17. Cut the roll into 3cm sections and place flat into a baking tray.
  18. +
  19. Preheat the oven to 350F or 180C, then bake the rolls for 20-25min until lightly brown.
  20. +
\ 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 @@ + + + + + \ 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 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ 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 @@ + + + +

My top 5 Favourite Websites

+ + +

+
    +
  1. Github
  2. +
  3. Code Combat
  4. +
  5. Ozaria
  6. +
  7. Udemy
  8. +
  9. Arch Linux Website
  10. +
+

+ +

My top second Favourite Websites

+ +

+ + +
    +
  1. Google
  2. +
  3. Gmail
  4. +
  5. Black Box AI
  6. +
  7. Monkey Type
  8. +
  9. Youtube
  10. +
+

diff --git a/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/solution.html b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/solution.html new file mode 100644 index 0000000..73e3111 --- /dev/null +++ b/Web Development Python Projects/3.2+Anchor+Elements/3.2 Anchor Elements/solution.html @@ -0,0 +1,20 @@ +

My top 5 Favourite Websites

+ +
    +
  1. Product Hunt
  2. +
  3. Smash the Walls
  4. +
  5. Wordle
  6. +
  7. Hacker Typer
  8. +
  9. Stellarium
  10. +
+ + + + +
    +
  1. Product Hunt
  2. +
  3. Smash the Walls
  4. +
  5. Wordle
  6. +
  7. Hacker Typer
  8. +
  9. Stellarium
  10. +
\ 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!

+a ubuntu logo + + + +

I USE ARCH BTW MAN!

+a arch linux logo + +

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

+kitten held in hand + 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

+puppy digging in the sand \ 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

+ + + + +a purple birthday cake with happy birthday written on it with candles on top of them with baloons behind the background + +

What to bring:

+ + + + +

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

+ +purple birthday cake with candles + +

What to bring:

+ + +

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