标签:post lis 提示 button 抓取 输入 位置 表示 列表
a标签:超链接
<a href =""></a>
href="":为属性,所有元素都有属性,加在开始标签里,属性表示元素的额外信息;href:标记名,href属性表示用户点击它后会跳转到属性值
"":里面的内容为属性值,属性值包含在引号里,引号一定要是英文
无序列表:<ul>
<li><li>
</ul>
随意做什么,不特定必须做什么然后做什么
有序列表:<ol>
<li><li>
</ol>
有顺序的必须先做什么后做什么
自定义:<dl>
<dt>HTML术语</dt>
<dd></dd>
</dl>
段落:<p></p>
预格式文本:<pre></pre>还原HTML所写的内容
引用(大段):<blockquote></blockquote>
引用(小段):<q></q>
跨越字符:<p>
<span></span>跨越多个字符或文字
</p>
斜体:<em></em>着重于选中的文本进行阅读
<i></i>只是斜体
字体加粗:<b></b>只是加粗
<strong></strong>着重于选中的文本进行阅读
日期标签,时间标签:<time datetime=""></time>
简写标签:<abbr title=""></abbr>简写内容写在title属性里面
上标:X<sup></sup>
下标:O<sub></sub>
插入图片: 1,<img src=""> src:图片存放的位置/路径;找图片时../为退一格
2,<figure> alt:功能描述;页面上没显示出图片它会显出alt里面所写的内容
<img src="">
<figcaption></figcaption>添加对图片的描述,为蜘蛛抓取
</figure>
换行:<br>
分割线:<hr>
音频:<audio src=""></audio>
视频:<video src=""></video>
controls音频视频播放插件和按钮;autoplay自动播放;loop循环播放
多行文本框:<textarea name="" id="" cols="" rows=""></textarea>;cols行;rows列
单选框:<br>
<input type="radio" name="" ralue="">用于兴趣爱好选择项
多选框:<br>
<input type="checkbox" name="">用于兴趣爱好选择项
下拉列表、下拉框:<br>
<select name="">
<option value=""></option> option选择项
</select>
隐藏式:<details>
<summary>
</summary>
<p></p>
</details>
表格:<table border=""> colspan合并列;rowspan合并行
<tr>
<td><td>
</tr>
</table>
邮箱:<br>
<input type="text" placeholder="">
<input type="text" List="">
<datalist id=“”>
<option value=""></option>
</datalist>
密码前面*变颜色:<span style="color ">*</span>
form表单:<form action="" method></form> action提交地址,method提交方式get/post;post隐藏;get显式
提示用户点击填写:<label for=""></label> 光标点击会跳到该排内容
账号:<br>
<input type="text">
密码:<br>
<input type="password">
按钮:<input type ="button" value=""> button:属性;value:设置按钮名称
提交按钮:<input type="submit">
重置按钮:<input type="reset">
设置输入框的文本长度:<input type ="text" maxlength="">
设置不许为空文本:<input type="text" maxlength=“11” required>
添加日历插件选择:<input type="date">
数值型输入框:<input type="number" min="150" max="200" step="10" ralue="160">
<input type="range" min="10" max="100" name=""> 用于身高体重选择;min最小值/起始值,max最大值,value默认值,step差值
颜色的选择:<input type="color" name="color"> 用于选择喜欢的颜色
标签:post lis 提示 button 抓取 输入 位置 表示 列表
原文地址:http://www.cnblogs.com/tydy9891-/p/7620540.html