<!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html; charset=utf-8"> <title>表单标签</title> </head> <body> <form method="post" action="save.php"> 账户: <input type="text" name="myname" value="" /> <!--text代表文本输入框--> <br/> 密码: <input type="password" name="pass" value="" /> <!--password代表密码输入框--> <br/> <input type="submit" name="submit" value="确认提交" /> </form> </body> </html>