源码论坛,商业源码下载,尽在锦尚中国商业源码论坛

标题: 详解html头标签的使用方法 [打印本页]

作者: 欧阳锋    时间: 2018-11-5 22:30
标题: 详解html头标签的使用方法
这篇文章主要介绍了详解html头标签的使用 ,需要的朋友可以参考下:
HTML两部分组成 head和body

** 在head里面的标签就是头标签
** title标签:表示在标签上显示的内容
** meta标签:设置页面的一些相关内容(用的比较少)


  1. <meta name="keywords" content="熊猫,金丝猴,恐龙"/>

  2. <meta http-equiv="refresh" content="3;url=01-hello.html"/>
复制代码



** base标签:设置超链接的基本设置
- 可以统一设置超链接的打开方式
<base target="_blank"/>
** link标签:引入外部文件
** css中使用到,可以使用link标签引入css文件


完整代码:

  1. <html>
  2.     <head>
  3.         <title>World</title>
  4.         <meta name="keywords" content="熊猫,金丝猴,恐龙"/>
  5.         <!--<meta http-equiv="refresh" content="3;url=01-hello.html"/>-->
  6.         <base target="_blank"/>
  7.     </head>
  8.     <body>
  9.         <h3>头标签</h3>
  10.         <a href="01-hello.html">超链接1</a>
  11.         <a href="01-hello.html">超链接2</a>
  12.         <a href="01-hello.html">超链接3</a>
  13.     </body>
  14. </html>
复制代码


总结:感谢阅读锦尚中国源码论坛发布的学习教程,有什么补充交流的可以联系小编,感谢对我们的支持





欢迎光临 源码论坛,商业源码下载,尽在锦尚中国商业源码论坛 (https://bbs.52jscn.com/) Powered by Discuz! X3.3