diff --git a/survey form/survey.css b/survey form/survey.css new file mode 100644 index 0000000..a25bfc8 --- /dev/null +++ b/survey form/survey.css @@ -0,0 +1,99 @@ +.background{ + width: 100%; + height: 100%; + + top: 0; + position: fixed; + left: 0; + right: 0; + bottom: 0; +} +body{ + background: rgb(39,39,39); + font-family:cursive; +} +.d1{ + position: absolute; + background: linear-gradient(to right,rgb(83, 83, 210),rgb(135, 131, 131)); + width: 100%; + height: 1500px; + opacity: 0.8; + top: 0; + left: 0; + right: 0; + bottom: 0; + + +} +.heading{ + color: white; + font-size: 50px; + text-align: center; +} +.para1{ + text-align: center; + color: white; + font-size: 30px; +} +.box{ + background-color: rgb(5, 5, 45); + + width: 1000px; + height: 1280px; + position: absolute; +color: white; + margin-left: 380px; +} +.Name{ + font-size: 22px; + text-align: left; + padding-left: 40px; + +} + + +.input{ + width: 900px; + height: 50px; + border-radius: 8px; + font-size: 18px; + margin-left: 40px; align-items: left; + padding-left: 20px; +} +.check{ + font-size: 22px; + margin-left: 40px; + line-height: 40px; +} +.para2{ + margin-left: 40px; + font-size: 22px; +} +.comment{ + width: 900px; + height: 100px; + opacity: 1; + color: white; + font-size: 20px; + text-align:top; + padding-top: 0px; + margin-left: 40px; +} +.button{ + width: 900px; + margin-top: 30px; + margin-left: 40px; + height: 45px; + background-color: green; + font-size: 20px; + color: white; + border: none; + border-radius: 5px; +} +.button:hover{ + background-color: rgb(197, 237, 137); + cursor: pointer; + color: black; +} + + diff --git a/survey form/survey.html b/survey form/survey.html new file mode 100644 index 0000000..b762a58 --- /dev/null +++ b/survey form/survey.html @@ -0,0 +1,48 @@ + + + + + survey-form + + + + + +
+

Survey Form

+

Thank you for taking the time to help us improve the platform

+
+ +

Name

+ +

Email

+ +

Age(optional)

+ +
+ + +

Would you recommend freeCodeCamp to a friend?

+
+
+ +

What would you like to see improved? (Check all that apply)

+
+
+
+
+
+

Any comments or suggestions?

+ + +
+
+ + + \ No newline at end of file