Popular posts from this blog
#How to Make Registration Form By HTML
<html> <head> <title>HTML Table</title> </head> <body> <form method=""action=""> <table border="1" align="center" width="400" bgcolor="#CCCCA44" > <caption>Registration form By Amit</caption> <tr> <th>Enter your first name</th> <td><input type="text" name="fn" id="fn1" maxlength="10" title="enter your first name" placeholder="enter your first name" required/></td> </tr> <tr> <th>Enter your last name</th> <td><input type="text"/></td> </tr> <tr> <th>Enter your password</th> <td><input type="password"/></td> </tr> <tr> <th>ReEnter your password</th> <td><input type="password"/></td> </tr> ...

Comments
Post a Comment