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; +}