Hi guys,i want to make form but i dunno how to modify it,anyway its look like this: Name :[] Website Url :[] [Next] <button Ok here's the thing i duno,i want after they press next button,i will be putting cpa code and content locking will come out,they will have to complete the survey first before they can click [Finish]<button after that this form will send an email to me with their name and website url.thats it. I hope someone can help me,noobs here
here is a resource that can help you tremendously when it comes to simple HTML: http://www.w3schools.com/html/html_forms.asp
<a href="previous.html">Previous</a> <a href="next.html">Next</a> <a href="previous.html" target="name_of_main_frame.html">Previous</a>
For events that you're describing (sending emails and checking survey is complete before submission) you'll need more than HTML. HTML is merely a markup language which defines how your website is interpreted and displayed by browsers. Server side languages such as PHP are needed to send emails and client side languages such as JS are needed to validate pre-submission client criteria.