HTML
CSS
PHP
Deno
Examples
Do It Yourself
Blog
Type in your code below
Run
<!DOCTYPE html> <html> <body> <form action="landing-page.php" method="post"> <p> <label for="firstname">First Name</label><br/> <input id="firstname" name="firstname" placeholder="Enter First Name" type="text"/></p> <p> <label for="lastname">Last Name</label><br/> <input id="lastname" name="lastname" placeholder="Enter Last Name" type="text"/></p> <p> <label for="email">Email Address</label><br/> <input id="email" name="email" placeholder="Enter Email Address" type="text"/></p> <p> <label for="password">Password</label><br/> <input id="password" name="password" placeholder="Enter Password" type="password"/></p> <p> </p><div>Select Gender</div> <input id="male" name="gender" type="radio" value="male"/> <label for="male">Male</label><input id="female" name="gender" type="radio" value="female"/> <label for="female">Female</label> <p> <input id="accept" name="accept" type="checkbox" value="yes"/><label for="accept">I accept to register on site.</label></p> <input name="submit" type="submit" value="Submit"/> </form> </body> </html>
Related Chapters
HTML Input Attributes
HTML Forms Inputs
HTML Forms
Related Examples
HTML Form GET Method Example