标签:
HTML
英文全称:Hyper Text Markup Language
中文全称:超文本标记语言
HTML标签
正文标题:
<h(1,2,3,4,5,6)></h(1,2,3,4,5,6)> 共六级,h1为最大。
列表:
无序列表:
<ul>
<li>一</li>
<li>二</li>
...
</ul>
有序列表:
<ol></ol>
自定义列表:
<dl>
<dt>列表名称</dt>
<dd>具体内容</dd>
</dl>
段落:
<p></p>
预格式文本:
<pre></pre>标签内的内容会完全显现在网页上面。
引用文本:
<blockquote>引用的文字</blockquote>
跨越多字符:
<span></span>可以对标签内的内容进行特殊处理。
超链接:
<a href="链接地址" target="_blank"(选择打开方式)></a>
分区块文本:
<div>div块,通常用于布局</div>
strong强调:
<strong>加强语气</strong>
<em>用斜体来表示</em>
<i>斜体</i>
<b>加粗显示</b>
换行:
<br/>
水平线:
<hr/>
特殊字符:
空格
<左尖括号<或小于号
>右尖括号>或大于号
©版权符号
®已注册符号
&and符号&
—长破折号
图片:
<img src="图片地址" alt=图片显示不出时替换用的文字/>
表格:
<table border="1"(边框线)>
<caption>标题</caption>
colspan合并行 rowspan合并列
<colgroup>控制列的颜色
<col style="background:red"/>
</colgroup>
</table>
表单:
<form action="路径" method="get/post"(传输方式)>
<input type="text" value="" placeholder="username"(浅灰色的提示文本,聚焦时不显示)>
<maxlength="11">最大值
<input type="password">密码框
type="rest"重置
type="submit"提交
type="file"上传文件
type="checkbox"多选框
type="radio" name="类别"单选框
type="date"日期
type="number" min="0" max="10"数字
type="emil"电子邮件
type="url"url地址
type="tel"电话号码
dutofous默认为聚焦属性
下拉框:
<select name="" id="">
<option value="男装">男装</option>
<option value="男鞋">男鞋</option>
</select>
</form>
多行文本框:
<textarea name="" id="">
</textarea>(在<form>标签外写)
定义域:
<fieldset>
<legend></legend>
</fieldset>
禁用:
disabled
只读:
readonly
标签:
原文地址:http://www.cnblogs.com/yinian/p/5371527.html