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

HTML5-Form Creation_html/css_WEB-ITnose

WBOY
Release: 2016-06-24 11:46:44
Original
1225 people have browsed it

, ,

<!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>
Copy after login

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template