标签:
<!DOCTYPE html>(文件说明,表示使用的是html5)
<html>
<head>
<title>我的页面</title>
<meta charset=utf-8>
</head>
<body>
<code>
<pre>
int main(){
printf("hello\n");
return 0;
<pre>(pre表示原原本本按照输入的格式显示)
</code>
<em>em强调</em>
<strong>strong着重</strong>
<dfn>definition定义</dfn>
<code>code代码</code>
<samp>samp例子代码<samp>
<kbd>kbd用户输入</kbd>
<var>variable变量<var>
<cite>cite引用<cite>
<br>
<hgroup>
<h1>我的第一个</h1>(第一集标题)
<h2></h2>(标题必须单独成行)
<hr width=50% align=left size=1>(hr表示插入标记,不用结束,分割线)
</hgroup>(表示h1和h2是连续的 但也是单独的标记)
<br>(br表示换行)
<p>
<bdo dir=rtl>表示字体从右向左排列</bdo><bdi>从左向右<bdi>
<wbr>HTML<b>页</b>(b表示特别的标记,加粗)面</wbr>(wbr表示单词可以分开)
</p>(p表示段落)
<i></i>(斜的)
<tt></tt>(等宽的西文字体)
<small></small>(字体变小)
<del>你好</del>(表示删除你好)
<ins>你好</ins>(表示添加你好)
a<sup>2</sup>s+b<sub>0<sub>(sup表上标,sub表下标)
<mark></mark>(表示高亮,字体会显示出颜色)
The <abbr title="people‘s Republic of China">PRC</abbr> was founded in 1949 (abbr表示设置标签,指入相应位置可出现浮云标签,title可随处添加)
<ul>(不排序的列表,文字前显示小圆点)
<li>红茶</li>(li表示列表项目)
<li>咖啡</li>
<li>可乐</li>
</ul>
<ol start=2(表示从2开始排列)>(数字排序)
<li>红茶</li>
<li>咖啡:
<ul>
<li>不加糖</li>
<li>不加奶</li>
</ul>
</li>
<li>可乐</li>
</ol>
<dl>(类似词典的意思)
<dt>方糖</dt>(需要解释的)
<dd>方的糖,甜的</dd>(解释)
</dl>
list-style:none(列表不适用项目符号)
<img src="mama.jpg"width="200"height="200"alt="妈妈" />(表示图片,不需要结束,src图片文件位置,width宽度,height高度)
<iframe src="http//news.163.com"></iframe>(可以将别的页面加入自己的页面,必须要有结束,也可添加设置高度宽度)
<a href="http://news.163.com">网易新闻<a/>(表示添加链接,href表示添加的页面)
</body>
</html>
标签:
原文地址:http://www.cnblogs.com/nieying/p/5611608.html