Case description:
- Use tables to achieve page effects
- If you don’t want the hyperlink to have any effect, use href=#
- If the cells in the table have no content, use spaces as placeholders
- Use the image tag to submit the form <input type=image src=path to the image/>
Complete code:
<html> <head> <title>World</title> </head> <body> <form action=01-hello.html method=post> <h3 align=center>Welcome to this page! </h3> <table width=100%> <tr> <td align=right>Registration email:</td> <td><input type=text name=regit/></td> </tr> <tr > <td> </td> <td>You can also use <a href=#>mobile phone number</a> to register or use <a href=#>account</a> to register</td> </ tr> <tr> <td align=right>Create password:</td> <td><input type=password name=pwd/></td> </tr> <tr> <td align=right>Real name:</td> <td><input type=text name=realname/></td> </tr> <tr> <td align=right>Gender:</td> <td> <input type=radio name=sex value=famale/>Female<input type=radio name=sex value=male/>Male</td> </tr> <tr> <td align=right>Birthday:</td> <td> <select nameyear> <option value=1997/>1997 <option value=1998/>1998 <option value=1999/>1999 </select>Year<select namemonth> <option value=01/>01 <option value=02/>02 <option value=03 selected=selected/>03 </select>Month<select nameday> <option value=20/>20 <option value=21/ >21 <option value=22/>22 </select>Day</td> </tr> <tr> <td align=right>I am now:</td> <td> <select namenow> <option value=study/>At school<option value=1998/>Already working</select> </td> </tr> <tr> <td> </td> <td>< img src=images/verycode.png/><a href=#>Can’t see clearly? Change to another one? </a></td> </tr> <tr> <td> </td> <td><input type=image src=images/btn.png></td> </tr> </td> table> </form> </body></html>Summarize
The above is the example code of HTML using form tags to implement the registration page introduced by the editor. I hope it will be helpful to you. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for your support of the VeVb martial arts website!