Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

html fieldset

  <!-- fieldset with email, max-length-password, submit & reset button-->
        <form>
            <fieldset>
                <legend>Authentication</legend>
              
                <label for="">Email:</label>
                <input type="email" name="email">
              
                <label for="">Password:</label>
                <input type="password" maxlength="8">
              
                <input type="submit" value="submit" target="submit">
                <input type="button" value="reset" target="reset">
            </fieldset>
        </form>
 
PREVIOUS NEXT
Tagged: #html #fieldset
ADD COMMENT
Topic
Name
1+5 =