html input email code example

Example 1: 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>

Example 2: input email tag

<input type="email" id="email" name="email">

Example 3: input type email

<label for="email">Enter your email:</label>
<input type="email" 
  id="email" name="email">

Example 4: how to add an email box in html

Email : <input type="email">

Example 5: html input for email

<div>
            Email: <input type="email" name="myEmail">
</div>

Tags:

Html Example