html 其他标签

来源:互联网 发布:能够翻译文档软件 编辑:程序博客网 时间:2024/06/05 11:15
<!DOCTYPE html>
<html>
  <head>
    <title>other.html</title>
    
    <meta name="keywords" content="keyword1,keyword2,keyword3">
    <meta name="description" content="this is my page">
    <meta name="content-type" content="text/html; charset=GBK">
    <!-- 3为刷新后等待时间,后跳转百度 -->
    <meta  http-equiv="refresh" content="3;url=http://www.baidu.com"/>
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->

  </head>
 
  <body>
      <!--跑马灯  -->
      <marquee direction="down" behavior="slide">我可以飞</marquee>
      <hr />
      <!--b标签为加粗,i标签为斜体,u标签为下划线 pre为保持块内格式,sub为下标,sup为上标  -->
      <b>这是</b><i>一个</i><u>有故事的男人</u>
      <pre>
          public static void main(String[] arg)
          {
              System.out.println("Hello World!");
          }
          你好
          好
      </pre>
      X<sub>2</sub> X<sup>2</sup>
  </body>
</html>

原创粉丝点击