1)A Jr. web designer wants to
design a webpage to enter the
employee name, address. He
needs a button to clear the form

content and submit the data.

Write the different controls he
will use to create the web

page.

State the tags to be used for

the controls.


Answer :

mosravo

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:

Other Questions