Answer :
Answer:
The Controls need to create the website are:
1) Text
2) button
Tags to be used for the Controls:
<form id="form1" name="form1" method="post" action="">
<p>
<label>Employee Name
<input type="text" name="employeename" id="employeename" />
</label>
</p>
<p>
<label>Address
<input type="text" name="address" id="address" />
</label>
</p>
<p>
<input type="reset" name="clear" id="clear" value="Clear" />
<input type="submit" name="submit" id="submit" value="Submit" />
</p>
</form>
Explanation: