From 7b0cb030a2af47ee83e5b309dfa9a182b75f2f25 Mon Sep 17 00:00:00 2001 From: Muhammad Ibrahim Date: Tue, 19 Nov 2024 08:03:31 +0530 Subject: [PATCH] Modified the Arabic Color learning website --- .../5.4 Color Vocab Project/index.html | 14 +++++----- .../5.4 Color Vocab Project/style.css | 28 +++++++++++++++++++ 2 files changed, 35 insertions(+), 7 deletions(-) diff --git a/Web Development Python Projects/5.4 Color Vocab Project/index.html b/Web Development Python Projects/5.4 Color Vocab Project/index.html index d85f0c4..0f3196d 100644 --- a/Web Development Python Projects/5.4 Color Vocab Project/index.html +++ b/Web Development Python Projects/5.4 Color Vocab Project/index.html @@ -3,26 +3,26 @@ - Spanish Vocabulary + Arabic Vocabulary

Colors

-

Learn the colors in Spanish!

-

Rojo

+

Learn the colors in Arabic!

+

Ahmar

red -

Azul

+

Azraq

blue -

Anaranjado

+

Burtiqal

orange -

Verde

+

Akhdar

green -

Amarillo

+

Asfar

yellow diff --git a/Web Development Python Projects/5.4 Color Vocab Project/style.css b/Web Development Python Projects/5.4 Color Vocab Project/style.css index e69de29..363dbc3 100644 --- a/Web Development Python Projects/5.4 Color Vocab Project/style.css +++ b/Web Development Python Projects/5.4 Color Vocab Project/style.css @@ -0,0 +1,28 @@ +#red { + color: red; +} + +#blue { + color: blue; +} + +#orange { + color: orange; +} + +#yellow { + color: yellow; +} + +#green { + color: green; +} + +.color-title { + font-weight: normal; +} + +img { + height: 200px; + width: 200px; +} \ No newline at end of file