电话
13363039260
<head> 元素包含了所有的头部标签元素。在 <head>元素中你可以插入脚本(scripts), 样式文件(CSS),及各种 meta 信息。
可以添加在头部区域的元素标签为: <title>, <style>, <meta>, <link>, <script>, <noscript> 和 <base>。
<head> 元素描述了文档的各种属性和信息,其中包括文档的标题、在 Web 中的位置以及和其他文档的关系等。
<!DOCTYPE html>
<html>
<head>
<title>编程狮(w3cschool.cn)</title>
</head>
<body>
w3cschool随时随地学编程!
</body>
</html>