Home >Web Front-end >HTML Tutorial >HTML5-Form Creation_html/css_WEB-ITnose

HTML5-Form Creation_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:46:441226browse

ad5ef1e2813e07cae08f1bbe937b6099, b821920772c3c658095d4f0fa8b5c76e,6d60d9695c2a31fc364c32c98433f360

330fdee7f702db5d2e645a6376afb1d6

cc8bcee02245c57fec6fa8426d3ee17c

<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title>表单</title></head><body>    <form>        用户名:        <input type="text">        <br/>        密  码:        <input type="password" ">        <!-- 文本-->        <br/>        你喜欢的水果有?        <br/>        苹果<input type="checkbox">        西红柿<input type="checkbox">        香蕉<input type="checkbox">        鸭梨<input type="checkbox">        <!-- 复选框-->        <br/>        请选择你的性别:        <br/>        男:<input type="radio" name="sex">        女:<input type="radio" name="sex">        <!-- 单选按钮-->        <br/>        请选择你常用的网站:        <!-- 下拉菜单,select:选择,option:选项-->        <select>            <option>www.jikexueyuan.com</option>            <option>www.baidu.com</option>            <option>www.googl.com</option>            <option>www.qq.com</option>            <option>www.yy.com</option>        </select>        <br/>        <!-- 按钮:type="button" value="按钮!":类型-按钮,值-按钮。-->        <input type="button" value="按钮!">        <input type="submit" value="提交.">    </form>    <!-- textarea:文本域,cols:列,rows:行-->    <textarea cols="30" rows="30">请在此填写个人信息:</textarea></body></html>

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn