1<form>
2
3 <div>
4 <label for="email-input">Label text</label><br>
5 <input
6 id="email-input"
7 type="email"
8 name="email-inputted"
9 placeholder="placeholder-text">
10 </div>
11
12 <button type="submit">Submit</button>
13</form>
1<label for="user_email">Your email</label><br/>
2<input
3 type="email"
4 id="user_email"
5 name="user_email"
6 maxLength="100"
7 placeholder="Email is mandatory">
1
2 <label for="email">Enter your email:</label>
3<input type="email"
4 id="email" name="email">
5