diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..49898fc54 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,27 +1,44 @@ - - - - My form exercise - - - - -
-

Product Pick

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

Order a T-Shirt

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