การสร้างฟอร์ม  

HTML :: form tag :: form
tag :  <form> ... </form>
position :  <body> ... </body>
content :  ใช้สร้างแบบฟอร์ม
example :  <form method="post" action="update.php">
   <input type="text" name="panda" />
   <input type="submit" name="submit" />
   </form>

HTML :: form tag :: form method
tag :  <form method="value"> ... </form>
position :  get, post
content :  ใช้กำหนดวิธีการส่งข้อมูล
example : <form method="post">
   ...
   </form>

HTML :: form tag :: form action
tag :  <form action="value"> ... </form>
position :  ชื่อไฟล์ ( ประเภท CGI )
content :  ใช้กำหนดไฟล์ที่จะรับข้อมูลไปประมวลผล
example :  <form action="update.php">
   ...
   </form>