From 5b35052b17ed479fc596ea96e1a570a0221a413c Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Sun, 31 May 2026 21:23:22 +0100 Subject: [PATCH 1/7] Add form controls --- Form-Controls/index.html | 63 +++++++++++++++++++++++++--------------- 1 file changed, 39 insertions(+), 24 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..129372d3d 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,27 +1,42 @@ - - - - My form exercise - - - - -
-

Product Pick

-
-
-
- - -
-
- - + + + T-Shirt Order + + + + +

Order a T-Shirt

+ + + + + + + + + + + + + + + + + + From 1e930b14f63b336b80983ad90e107e222c3ac2ed Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Sun, 31 May 2026 22:33:33 +0100 Subject: [PATCH 2/7] fix light house accessibility score --- Form-Controls/index.html | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 129372d3d..caeaacbc0 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -4,14 +4,15 @@ T-Shirt Order +

Order a T-Shirt

@@ -30,13 +31,3 @@

Order a T-Shirt

- - - - - - - - - - From b0004a9f01025714eb1a3a22826a5396cfd07baa Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Sun, 31 May 2026 22:44:04 +0100 Subject: [PATCH 3/7] Fix validation errors and improve accessibility --- Form-Controls/index.html | 62 +++++++++++++++++++++++++++++++--------- 1 file changed, 49 insertions(+), 13 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index caeaacbc0..11d5e1c89 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,33 +1,69 @@ - + T-Shirt Order -

Order a T-Shirt

- + - + - - - + + + + + +
+ + +Compose From eba169633e3eba8a8becb2a32a6d24e32d975be6 Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Sun, 31 May 2026 23:22:38 +0100 Subject: [PATCH 4/7] fix typo in HTML file --- Form-Controls/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 11d5e1c89..041c2b01b 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -66,4 +66,4 @@

Order a T-Shirt

-Compose + From d1ec3deaf1eba85277ef98cb5a8af71b916da83c Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Thu, 4 Jun 2026 15:57:22 +0100 Subject: [PATCH 5/7] Update index.html move CSS to separate file --- Form-Controls/index.html | 34 ++-------------------------------- 1 file changed, 2 insertions(+), 32 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 041c2b01b..e47bd07c6 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -3,38 +3,8 @@ T-Shirt Order - + +
From a1143c15c64952e6a048ee29fd6d31032f18d2cf Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Thu, 4 Jun 2026 15:58:04 +0100 Subject: [PATCH 6/7] Create style.css paste CSS here --- Form-Controls/style.css | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 Form-Controls/style.css diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..0b8aa65b6 --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,30 @@ +body { + font-family: Arial, sans-serif; + padding: 20px; + background: #ffffff; + color: #111111; + } + label { + display: block; + margin-top: 16px; + font-weight: bold; + color: #111111; + } + input, select { + width: 100%; + padding: 8px; + margin-top: 4px; + border: 2px solid #111111; + font-size: 1rem; + } + button { + display: block; + margin-top: 20px; + padding: 12px 24px; + background: #8B0000; + color: #ffffff; + border: none; + cursor: pointer; + font-size: 1rem; + font-weight: bold; + } \ No newline at end of file From 991b18a0db4c5c21bddc2840c256565be107a772 Mon Sep 17 00:00:00 2001 From: eyob-tech Date: Thu, 4 Jun 2026 16:02:41 +0100 Subject: [PATCH 7/7] Update index.html --- Form-Controls/index.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index e47bd07c6..c238a190b 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -36,4 +36,7 @@

Order a T-Shirt

+