From 7fdaafccca9b107b1baa0d3d58ebf67b9cc9d1df Mon Sep 17 00:00:00 2001 From: HereshT Date: Wed, 12 Apr 2023 12:31:41 +0100 Subject: [PATCH] Done --- Form-Controls/index.html | 46 ++++++++++++++++++++++++++++++++++----- Form-Controls/styles.css | 47 ++++++++++++++++++++++++++++++++++++++++ 2 files changed, 88 insertions(+), 5 deletions(-) diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 4344b144..0235bc43 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,5 +1,6 @@ + @@ -8,20 +9,55 @@ +

Product Pick

-
- - -
+
+ + + + +
+ + + +
+ + + +
+ + + +
+ + + +
+ + +
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..a407ad58 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,47 @@ +body { + font-family: Arial, sans-serif; + line-height: 1.6; +} + +header { + background: #35424a; + color: #ffffff; + padding: 20px; +} + +h1 { + margin: 0; +} + +main { + padding: 20px; +} + +label { + display: inline-block; + width: 150px; + font-weight: bold; +} + +input[type="submit"] { + background: #35424a; + color: #ffffff; + font-weight: bold; + padding: 5px 10px; + border: none; + cursor: pointer; +} + +input[type="submit"]:hover { + background: #e00909; +} + +footer { + background: #35424a; + color: #ffffff; + padding: 20px; +} + +:focus { + outline-color: #35424a; +}