“HTML Fieldset” Ответ

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

Как поместить имя на поле

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

Ответы похожие на “HTML Fieldset”

Вопросы похожие на “HTML Fieldset”

Больше похожих ответов на “HTML Fieldset” по HTML

Смотреть популярные ответы по языку

Смотреть другие языки программирования