Computer Science, asked by tittala2722, 1 year ago

How can we input text from user in html page?

Answers

Answered by Anonymous
1

Hi,

You can take input from users through input elements

for exmpale

to take normal text input use:-

<input type="text">

to take email input use:-

<input type="email">

to take password input use:-

<input type="password">

Similar questions