Answers for "email type input field html"

2

html email input

<form>
  
  <div>
    <label for="email-input">Label text</label><br>
    <input 
      id="email-input" 
      type="email" 
      name="email-inputted" 
      placeholder="placeholder-text">
  </div>
  
  <button type="submit">Submit</button>
</form>
Posted by: Guest on July-17-2020
0

input email tag

<input type="email" id="email" name="email">
Posted by: Guest on January-04-2021

Browse Popular Code Answers by Language