I’m stuck on step 12 I’m not sure why this code doeasnt work
<input id="email" name="email" type="email" size="20" required placeholder="example@email.com" />
This is exercise:
inputelements can have asizeattribute. This attribute defines the number of characters that should be visible as the user types into the input. The value ofsizeshould be a non-negative integer greater than zero. Ifsizeis not specified, or is specified with an invalid value, the input will have the default width set by the browser.Example Code
<label for="lastName">Last Name:</label> <input id="lastName" name="lastName" type="text" size="10" />
Give the name and email inputs a
sizeattribute with a value of"20".