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

Product Pick

+
- - +
+ Customer Information + +
+ + +
+ +
+ + +
+
+
+ Order Details + +
+ + +
+ +
+ + +
+ +
+ + +
+
+ +
+ +
+
diff --git a/Form-Controls/styles.css b/Form-Controls/styles.css index e69de29b..d39ad74d 100644 --- a/Form-Controls/styles.css +++ b/Form-Controls/styles.css @@ -0,0 +1,81 @@ +body{ + margin: 0; + padding: 0; + font-family: Arial, sans-serif; + background-color: #e4e1e1; +} + +header { + background: #007BFF; + color: white; + padding: 20px; + text-align: center; +} + +main { + max-width: 800px; + margin: 20px auto; + padding: 20px; + background: white; + border-radius: 8px; +} + +fieldset { + border: 2px solid #007BFF; + border-radius: 8px; + padding: 20px; + margin-bottom: 20px; +} + +legend { + font-weight: bold; + color: #007BFF; +} + +label { + display: block; + margin-bottom: 8px; + font-weight: bold; +} + +input[type="text"], +input[type="email"], +input[type="date"], +select { + width: 100%; + padding: 10px; + margin-bottom: 15px; + border: 1px solid #ccc; + border-radius: 4px; + box-sizing: border-box; +} + +footer { + text-align: center; + padding: 10px; + background: #007BFF; + color: white; + position: relative; + bottom: 0; + width: 100%; +} + +input[type="submit"] { + background-color: #3ba80c; + color: white; + padding: 10px; + border: none; + border-radius: 5px; + cursor: pointer; + font-size: 16px; + width: 40%; + } + + input[type="submit"]:hover { + background-color: #0056b3; + } + + form > div { + display: flex; + justify-content: center; + } \ No newline at end of file