すべてのページで使用されるヘッダーとメインメニューのコードを保持する、(今のところ) php コードを使用しない php ファイルがあります。h1 のスタイル クラスを作成したにもかかわらず、CSS ファイルは効果がありません。「TEST」というテキストが表示されますが、スタイルは適用されません。CSS ファイルを適切に含めるにはどうすればよいですか?
mainMenu.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>
index.php
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>untitled</title>
<?php include ('./includes/mainMenu.php') ?>
</head>
<body>
</body>
</html>