diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..692fcd7d0 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,27 +1,63 @@ - - - - My form exercise - - - - -
-

Product Pick

-
-
-
- - -
-
- - - + + + + + My form exercise + + + + + + +
+

My Store T-shirt Sales

+
+
+
+
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+
+ + +
+
+
+ + + + \ No newline at end of file diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..8b38ad2ba --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,35 @@ +body { + color: #000; + background: #fff; + font-size: 18px; + line-height: 1.5; +} + +label { + display: block; + margin-bottom: none; + margin-top: 10px; + font-weight: bold; +} + +input, +select, +button { + font-size: 16px; + padding: 10px; +} + +input:focus, +select:focus, +button:focus { + outline: 3px solid #4a90e2; + outline-offset: 2px; +} + +button { + background-color: #0066cc; + color: #fff; + border: none; + cursor: pointer; + margin-top: 12px; +}