INSERTING A FORM IN DREAMWEAVER

Shortcut to insert a form Alt + I + F

  1. Go to the insert menu
  2. Click on 'form'
  3. Rename the form ID

 

For now, the form is visually invisible , but it is here

 

 

Html Code

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="ttp://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>

<form id="form1" name="form1" method="post" action="">

</form>

</body>
</html>