1.Html 注释,pre,<,>, ,超级链接,marquee,img标签
<html>
<head>
<title>常用的其他标签</title>
</head>
<body>
<!-- dl标签是用来做数据列表显示的 注释标签,注释标签不会在网页中被显示,仅仅用来对代码进行标注 -->
<!-- --> <!--pre标签中的信息会按照代码的方式完整的显示-->
<pre>
for(int i=0;i==10;i++) {
printf(%d,i);
}
</pre>
<!--<表示小于符号,>表示大于符号-->
i<10 i>15<br/>
<!-- 用来在页面中显示空格-->
师父 我来了<Br/>
©<!-- copy的符号--> &<!--&符号使用&来显示-->
<dl>
<dt>质检动态</dt>
<dd>关于xxxxx的文章</dd>
<dd>关于ddddd 的文章</dd>
</dl>
<!--所有的标签除了内容之外还有自己的属性,属性全部在开始的标签中来写-->
<a href="01.html" target="content" title="这个是我的超级链接标签">这是一个超链接</a>
<marquee direction="up" scrollamount="3" onmouseover="this.stop()" onmouseout="this.start()">
<ul>
<li>第一</li>
<li>第二</li>
</ul>
</marquee>
<img src="1.jpg" width="300" height="300" alt="三八国际劳动节" title="搞笑图片"/>
<!--alt, ttle为了让搜索引擎快速检索到图片 -->
<marquee>
<a href="02.html"><img src="2.jpg"/></a>
</marquee>
</body>
</html>