22.4k views
0 votes
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.




1 Answer

3 votes

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>

Step-by-step explanation:

User Vasil Rashkov
by
9.4k points