Text Inputs
HC · Formssyntax
<input type="text|email|password|url|search|tel" name="field" id="field">example
<label for="username">Username:</label>
<input type="text" id="username" name="username" placeholder="Enter username" maxlength="30" required>
<label for="user-email">Email:</label>
<input type="email" id="user-email" name="email" autocomplete="email">Note Different type values trigger different mobile keyboards and built-in validation. For example, type="email" shows an @ key on mobile and validates email format.