diff --git a/Form-Controls/index.html b/Form-Controls/index.html index 74b591ffc..2b481e3cf 100644 --- a/Form-Controls/index.html +++ b/Form-Controls/index.html @@ -1,27 +1,109 @@ - - - - My form exercise - - - - -
+ + + + + My form exercise + + + + + + + + + + + + + + + +
+ + +

Product Pick

+ + +
- - + +
+
+ + + +
+ + +
+ +
+ +
+ + +
+ +
+ + + +
+ + +
+ +
+ + + +
+ + +
+ +
+ + + + +
+ + + + +
+ +
+
+
- - +
+ + + \ No newline at end of file diff --git a/Form-Controls/style.css b/Form-Controls/style.css new file mode 100644 index 000000000..9b83f9608 --- /dev/null +++ b/Form-Controls/style.css @@ -0,0 +1,82 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} + + + +/* this is a google font */ +.font { + font-family: "Inter", sans-serif; + font-optical-sizing: auto; + font-style: normal; +} + + +/* This is a whole form's class */ +.form{ + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; + height: 100vh; +} + + +select{ + width: 212px; + height: 35px; + border-radius: 5px; + border: solid 1px black; + padding: 5px; +} + +fieldset{ + width: 314px; + height: 470px; + border-radius: 5px; +} + + +/* all input fields position class */ +.all{ + margin-top: 15px; + margin-left: 20px; +} + + +input{ + height: 35px; + width: 210px; + border-radius: 5px; + border: solid 1px black; + padding: 10px; +} + + +/* This is whole font weight class name */ +.blk{ + display: block; + font-weight: 500; + margin-bottom: 6px; + +} + +/* This is header class name */ +.hd{ + margin-right: 5%; + margin-bottom: 5px; +} + +.btn{ + display: block; + margin-top: 10px; + width: 90px; + height: 40px; + border-radius: 10px; + border: none; + background-color:rgb(42, 104, 236); + color: white; + font-weight: bold; +} \ No newline at end of file