diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..aa23eb422 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,4 +1,4 @@ - + @@ -6,6 +6,7 @@ My form exercise +
@@ -13,15 +14,58 @@

Product Pick

- - + +
+ Customer Details + + + + + + +
+ +
+ T-Shirt Options + + + + + +
+ +
diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..9929567a4 --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,32 @@ +body { + font-family: Arial, sans-serif; + margin: 20px; + padding: 0; +} + +form { + max-width: 400px; +} + +label { + display: block; + margin-top: 15px; + font-weight: bold; +} + +input, +select { + width: 100%; + padding: 8px; + margin-top: 5px; +} + +button { + margin-top: 20px; + padding: 10px; + width: 100%; + background-color: black; + color: white; + border: none; + cursor: pointer; +}