Hey guys, just finished my survey form project.
Any idea on how to make it “better” or solve it more easily?
Thank you very much
Hey guys, just finished my survey form project.
Any idea on how to make it “better” or solve it more easily?
Thank you very much
It looks very nice, i like the background. You could add some css syling to the textarea setting the width to 100% would be nice
nice styling man!
i see a little thing what not is that hard.
you use:
<input type="text" class="form-control" id="name" required="required" placeholder="Enter your Name">
you make a form where you can make a post later on. so for example your input type need to look like this:
<input type="text" name="name" class="form-control" id="name" placeholder="Enter your Name" required>
later on if you want to send the form data you need a different name tag in every input type.