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
2 <label for="email">Enter your email:</label>
3<input type="email"
4 id="email" name="email">
5