码迷,mamicode.com
首页 > 编程语言 > 详细

Java Web - HTML 常用标签和符号

时间:2017-07-07 23:34:52      阅读:297      评论:0      收藏:0      [点我收藏+]

标签:表示   完整   web   head   int   注释   超级   htm   top   

1.Html 注释,pre,&lt&gt&nbsp超级链接,marquee,img标签

<html>
    <head>
        <title>常用的其他标签</title>
    </head>
    <body>
        <!-- dl标签是用来做数据列表显示的 注释标签,注释标签不会在网页中被显示,仅仅用来对代码进行标注 -->
        <!-- -->

        <!--pre标签中的信息会按照代码的方式完整的显示-->
        <pre>
        for(int i=0;i==10;i++) {
            printf(%d,i);
        }
        </pre>
        <!--&lt;表示小于符号,&gt;表示大于符号-->
        i&lt;10 i&gt;15<br/>
        <!--&nbsp;用来在页面中显示空格-->
        师父&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;我来了<Br/>
        &copy;<!-- copy的符号--> &amp;<!--&符号使用&amp;来显示--> 
        <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>

 

Java Web - HTML 常用标签和符号

标签:表示   完整   web   head   int   注释   超级   htm   top   

原文地址:http://www.cnblogs.com/andypengyong/p/7134361.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!