本帖最后由 小石姐姐 于 2018-6-8 11:42 编辑
什么是html
html的功能
注意事项
结构标签
字体标签
- <font> 属性:size color face
排版标签
图片标签
- <img><img/> 属性 src weight height alt
路径
列表标签
asfadsf
<p>段落标签<p/>
[size=14.6667px]<b>加粗标签<b/>
[size=14.6667px]<u>下划线<u>
[size=14.6667px]<i>斜体<i/>
<h1>标题格式<h1/>
<hr/>横线
无序列表属性
- type
- disc 实心
- circle 空心圆
- square方块
有序列表属性
HTML的表单标签
HTML中表单元素
- <input type = "text">
- <imput type = "密码框">
- <input type = "radio">
- <input type = "checkbox"> 复选按钮
- <input type = "button"> 普通按钮
- <input type = "submmit"> 提交按钮
- <input type = "reset"> 重置按钮
- <input type = "file"> 上传按钮
- <input type = "hidden"> 隐藏字段
- <select> 下拉列表
- <testarea> 文本域名
- <input name> 表示表单的名称
- <input vale>文本框的默认值
- <input size> 文本框大小
checkbox和radio比须写value
form常用属性
- action 提交路径 默认提交到当前页面
- method 请求方式(提交方式)如 get(默认)/post
get:数据会显示到地址栏中(get提交有大小限制)
post:数据不会显示到数据栏中(提交的数据无大小限制)
html5扩展表单标签
- <input type="date">
- <input type="email">
- <input tupe="number">只能输入数字
- <input type="color">颜色选框
|
|