diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 4344b144..2a21e961 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -16,12 +16,67 @@

Product Pick

+ + +
+ * Enter Your Useranme + +
+
+ + +
+ * Enter Your Email Address: + + +
+
+ +
+ * select a colour + + + + + + +
+ + +
+ * select a size + + + + + + + + + + + + +
+ + +
+ * Select a delivery date + + + +
+ +
+ + +
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..6cc385ab 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,70 @@ +button, +input, +text, +radio, +label { + font-family: inherit; + font-size: 100%; + +} + +* { + margin: 0; + padding: 0; + box-sizing: border-box; +} + +header { + background-color: blanchedalmond; + height: 80px; + padding-top: 20px; +} + +h1 { + text-align: center; + color: blue; + +} + +form { + margin: 80px 50px 50px 110px; + padding-bottom: 30px; + border-bottom: 1px solid gray; + + +} + +fieldset { + border: none; + margin-bottom: 30px; + +} + +legend { + font-weight: 200; + font-size: 1.2em; + margin-bottom: 10px; +} + +.colour { + margin-left: 15px; +} + +.size { + margin-left: 15px; +} + +footer { + text-align: center; + background-color: blanchedalmond; + height: 80px; + padding-top: 30px; +} + +button { + margin-left: 350px; + padding: 10px 20px; + background-color: brown; + border: none; + border-radius: 5%; +} \ No newline at end of file