博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HTML头部
阅读量:6613 次
发布时间:2019-06-24

本文共 487 字,大约阅读时间需要 1 分钟。

1.文档声明

html5的声明类型为  <!DOCTYPE html>

2.head部分

  2.1 <title></title>

  2.2 <base href="www.xxx.com" />      <base target="_blank" />  设置默认链接或打开目标

  2.3 <mate name="keywords" content="html5,css" />  常用于搜索引擎提供信息,在html里没有闭合标签

  2.4 <link rel="stylesheet" type="text/css" href="mystyle.css" /> 定义外部资源,常用于连接外部样式表,在html里没有闭合标签

  2.5 <style type="text/css"></style> 定义内部样式表

  2.6 <script type="text/javascript" src="myscript.js"></script> 连接外部脚本或者定义内部脚本

转载于:https://www.cnblogs.com/fj0716/p/4777631.html

你可能感兴趣的文章