| 1. |
A Jr. web designer wants to design a webpage to enter the employee’s 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» A Junior Web designer will use the following controls to design web as follows: 1. Text – to create a single-line textbox for employee name 2. Text or Text area – If he wants to create a single-line address the text control is used otherwise to create a multiline address text area is used. 3. Submit – It is used to submit form data to the server. 4. Reset – It is used to clear form data. Tags used for the controls are- 1. Employee Name : <Input type-”text”> 2. Address : <Input type =”text”> or Address: < text area rows = ”4” cols- ”30”> <text area> 3. <Input type = ”submit” value = ”submit”> 4. <Input type- ”reset” value =”reset”> |
|