所以我使用PHP在头标记中包含所有链接,脚本和元标记,方法是使用以下代码:
<?php include(Config::get('file/html_headers')); ?>
包含以下文件:
dirname(__FILE__) . '/includes/headers/htmlHeaders.php'
因为我想说出这个&#39; htmlHeaders&#39;文件对其他程序员有意义,该文件名应该命名为什么?我很困惑这些标签被断然地称为什么。它们是html标题吗?
以下是htmlHeaders.php的内容
<!-- Latest compiled and minified Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="http://bootswatch.com/darkly/bootstrap.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.2.1.min.js" integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4=" crossorigin="anonymous"></script>
<!-- Latest compiled and minified Bootstrap JavaScript
MUST BE LOADED AFTER jQuery -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<!-- Now Doing Some Cleaning Up -->
<!--
Fix Bootstrap's Grid Issues
Apply "flex" class to div with class = "row"
Example: <div class="row flex"><div class="col-lg-12"></div></div>
-->
<style type="text/css">
.flex {
display: flex;
flex-wrap: wrap;
}
</style>
<!-- Ensuring Proper Rendering & Touch Zooming on Mobile Devices -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Improving Cross-Browser Rendering -->
<link rel="stylesheet" type="text/css" href="https://raw.githubusercontent.com/necolas/normalize.css/master/normalize.css">
答案 0 :(得分:2)
W3School将它们称为“头元素”,因为它们是<head>
标记中显示的元素。 W3C HTML规范称它是“不被视为文档内容的数据”,您可以简单地缩短为“非文档内容”。我通常只是简单地将该文件称为__headContents.<ext>
或仅__head.<ext>
。
我会就其他答案和评论说:
它们不是“标题”。在HTTP中,标题是在HTML之前发送的内容,如cookie,ETag等等 - 该单词表示HTTP中特定的内容。如果你把它们称为标题,在某些时候你会因为它会造成混乱而后悔。
他们不是“资产”。资产意味着“额外的外部文件”,涵盖CSS和&amp;外部JS以及图像;元和例如,标题标签不是资产,资产可以在<head>
标签之外引用。
答案 1 :(得分:0)
JavaScript和CSS类型的东西被称为&#34;资产。&#34;
如果您包含PHP代码,那么这只是网站上的标题。从您的代码看,PHP脚本看起来像创建HTML以包含资产。
答案 2 :(得分:0)
document meta 怎么样?本质上,<head>
中的任何内容都描述了当前文档,因此描述了元。
此外,在搜索引擎优化领域,人们会调用<head>
元标记的内容。