input text

input text
HTML input text Element
Setting the HTML input element's type attribute to "text" will render a component used to intake a single line of generic text from a user in your web <form>.
HTML CODE EXAMPLE
<fieldset>
  <legend>Personal Information</legend>
  <p>
     First Name: <input type="text" name="firstname">
     Last Name: <input type="text" name="lastname">
  </p>
</fieldset>
 
Personal InformationFirst Name:  Last Name: 

0 Response to "input text"

Post a Comment