在 HTML 网站的 header 部分我应该有什么东西

what things I should have in header section of HTML website

我正在学习如何创建 HTML 网站。我想知道我应该在网站的头部部分包含哪些内容(如元、link、脚本等)?

请告诉我所有可能的内容,我应该在他们的描述中包含这些内容。

最常见的标签是:

    <title>your websites title here</title>
    <style>your css here </style>
    <base href="http://www.your-base-default-url" >
    <link rel="stylesheet" type="text/css" href="path-to-external-css-file.css">
    <script>your javascript here if you have any</script>
    <meta name="choose-meta-tag-name" content="choose-meta-tag-content">

元标记有很多种,在这里查找您想要使用的那些 https://www.sitepoint.com/meta-tags-html-basics-best-practices/

当我们创建一个 HTML 页面时,我们需要在标题部分包含以下内容:

Link:它是一种层叠样式 sheet,我们根据设计要求使用它来创建页面。

JavaScript:它包含我们执行客户端操作的功能的 javascript 代码。

元标签:我们必须包含的各种元标签,例如 "charset,viewport,description,keywords,Author,ROBOTS,googlebot,YahooSeeker,msnbot,reply-to etc.." 以及规范参考,请阅读下面的 link 以了解我们必须在 HTML页。

https://gist.github.com/kevinSuttle/1997924

用于搜索引擎优化的基本元标记。