Computer Science, asked by manojbhise1736, 8 months ago

Write briefly how to add a text box for name, age and class

Answers

Answered by itsmeayushmsd
6

Answer:

To insert a text box:

Click the Text Box command in the Text group. Select a Built-in text box or Draw Text Box from the menu. If you select Built-in text box, left-click the text box you want to use, and it will appear in the document. If you select Draw Text Box, a crosshair cursor will appear

Explanation:

Answered by AskewTronics
8

In HTML, any one can add the text box with the help of input tag.

Explanation:

Missing Information:

  • The language is missing in the above question. It is not defined in which language the code will be needed.

Detailed Explanation:

  • When any user wants to add the text box in HTML then he can do it by the help of following code:-

         <input type="text">

  • Here type specified that which type of box it needs. for example, the text states that the box will take text data and the password states that the box will take password only.
  • Below are the code for text box for Name,age and class.

        <input type="text" name="name">

        <input type="text" name="age">

        <input type="text" name="class">

  • The name attributes of the input tag is used to access the value of the box, when it referred to other page.

Learn More:

  • HTML : brainly.in/question/5393962
Similar questions