From dbd2e0501381957685fac82715ae457a15f5e005 Mon Sep 17 00:00:00 2001 From: AndriusIsin Date: Sat, 6 May 2023 12:36:33 +0100 Subject: [PATCH] done --- .vscode/settings.json | 3 +++ Form-Controls/index.html | 48 ++++++++++++++++++++++++++++++++++------ Form-Controls/styles.css | 7 ++++++ 3 files changed, 51 insertions(+), 7 deletions(-) create mode 100644 .vscode/settings.json diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..4c7ff40f --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5502 +} diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 4344b144..a8579a5e 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -13,15 +13,49 @@

Product Pick

-
- - -
- +
+
+ + + + +
+
+
+ Choose colour + + + + + + +
+
+
+
+ Choose size + +
+
+
+ Choose Delivery Date + + + +
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..29c437b6 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,7 @@ +#email:focus, +#name:focus, +#delivery:focus, +#size:focus{ + background: black; + color: #FFFF00; +} \ No newline at end of file