form set html code example

Example 1: posting with forms html

<form method="POST" action="INSERT WHERE YOU'RE SENDING THE DATA TO HERE">
	<input type="text" name="INSERT DATA KEY NAME HERE"> <!-- You don't have to have this line --> 
</form>

Example 2: what is a fieldset html

The <fieldset> is a tool for organizing and grouping related 
items within a form. (Mostly visual for the reader).
 
 <form>
  <fieldset>

    <input type="radio" id="kraken" name="monster">
    <label for="kraken">Kraken</label>

    <input type="radio" id="sasquatch" name="monster">
    <label for="sasquatch">Sasquatch</label>

  </fieldset>
</form>

Tags:

Html Example