私はcodeigniterを初めて使用し、それを学習しようとしていますが、cssスタイルシートをロードまたはレイアウトに使用できません。CSSファイルをロードするために私が従った方法は私がインターネットで見つけたものですが、それはうまくいきませんでした。何か提案してください。
これが私のコードです:
<html>
<head>
<title>homePage</title>
<!--[if lte IE 6]>
<style type="text/css">
img, div { behavior: url(http('<?php echo $base_url; ?>images') }
</style>
<![endif]-->
<!--[IF lte IE 6]>
<link rel="stylesheet" href="<?php echo $base_url; ?>/css/homestyle.css" type="text/css" />
<![endif]-->
</head>
<body >
<div id="page">
<div id="menulinks">
<a class="active" href="#"><span>Home</span></a>
<a href="#"><span>Services</span></a>
<a href="#"><span>About Us</span></a>
<a href="#"><span>Contact Us</span></a>
</div>
<div id="header">
</div>
<div class="active" id="contentarea">
<br>
<br>
</div>
</div>
</body>
</html>