“HTML Fieldset” Kod odpowiedzi

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>
Ciprian Vlad

Jak umieścić nazwę na polu

<!--To put a name on a fieldset, simply use the "legend" tag.-->
<fieldset>
  <legend>fieldset name</legend>
</fieldset>
Hungry Hornet

Odpowiedzi podobne do “HTML Fieldset”

Pytania podobne do “HTML Fieldset”

Więcej pokrewnych odpowiedzi na “HTML Fieldset” w HTML

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu