Created
April 10, 2012 13:52
-
-
Save h4/2351521 to your computer and use it in GitHub Desktop.
Элементы форм
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <form> | |
| <h2>Элементы форм</h2> | |
| <fieldset> | |
| <legend>Input</legend> | |
| <h3>Текстовое поле ввода</h3> | |
| <p><input type="text" name="" id="" value="Иван"></p> | |
| <h3>Выключатель</h3> | |
| <p><input type="checkbox" name="" id="c1"> <label for="c1">Отметить</label></p> | |
| <h3>Переключатель</h3> | |
| <p><input type="radio" name="male" id="f1"> <label for="f1">М</label></p> | |
| <p><input type="radio" name="male" id="f2"> <label for="f2">Ж</label></p> | |
| <h3>Загрузка файла</h3> | |
| <p><input type="file" name="" id=""></p> | |
| <h3>Кнопка</h3> | |
| <p><input type="submit" name="" id="" value="Отправить"></p> | |
| <h3>Сброс формы</h3> | |
| <p><input type="reset" name="" id="" value="Сбросить"></p> | |
| <h3>Кнопка — input</h3> | |
| <p><input type="button" name="" id="" value="Нажми меня"></p> | |
| </fieldset> | |
| <fieldset> | |
| <legend>Прочие типы полей</legend> | |
| <h3>Кнопка — button</h3> | |
| <p><button name="" id="">Нажми меня</button></p> | |
| <h3>Многострочное поле ввода</h3> | |
| <p><textarea name="" id="" cols="100" rows="10">Начальные данные</textarea></p> | |
| <h3>Выпадающий список</h3> | |
| <p><select name="" id=""> | |
| <option value="">Выберите регион</option> | |
| <option value="78">Санкт-Петербург</option> | |
| <option value="77">Москва</option> | |
| <option value="10">Республика Карелия</option> | |
| </select></p> | |
| </fieldset> | |
| </form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment