diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 4344b144..c345a285 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -13,15 +13,46 @@

Product Pick

-
+ + +

+ +

+ +

+ + +

+ + +

+ + +

+ + +
+
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..beb529e1 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,21 @@ +* { + background-color: rgb(247, 244, 244); +} +#submit { + background-color: green; + color: white; + padding: 12px 20px; + border: none; + border-radius: 4px; + cursor: pointer; +} +input[type=text], input[type=email], input[type=date], select, textarea { + width: 25%; + padding: 12px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; + margin-top: 6px; + margin-bottom: 16px; + resize: vertical +} \ No newline at end of file