我有一个 php 文件,它(目前)不使用任何 php 代码,其中包含将在所有页面中使用的标题和主菜单的代码。CSS 文件没有效果,即使我已经为 h1 创建了一个样式类。显示文本“TEST”,但未应用样式。如何正确包含 CSS 文件?
主菜单.php
<!--This code is included within the <head> of each page, and the stylesheet for the header and main menu are included here-->
<link href="styles/headerMenu.css" ref="stylesheet" type="text/css">
<!--Header and menu code-->
<div>
<h1>TEST</h1>
</div>
索引.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>untitled</title>
<?php include ('./includes/mainMenu.php') ?>
</head>
<body>
</body>
</html>