链接到PHP Heredoc中的CSS样式表

时间:2018-07-28 02:42:13

标签: heredoc

我偶然发现了一种使用php heredocs创建网站的似乎更简单的方法,这与我通常使用的通常方法相反,后者只是使用echo,然后是html,或者弹出和弹出php。但是,当我尝试在Heredoc中链接我的styles.css时,我的css没有链接。为什么?

这是我的header.php

    <?php
 echo <<<_END

<!DOCTYPE html>
<html>
<head>
    <title> TEST SITE </title>
    <link rel="stylesheet" href="/styles.css">

</head>

<body>

    <header>
        <h1>BABY ELIE AND BABY ELI!</h1>

    </header>   



_END;

?>

和我的styles.css

    body {
    margin: auto;

}

header {
    background-color: grey;
}

我也有index.php和footer.php,但我认为问题出在上述代码中。

谢谢, 少尉

0 个答案:

没有答案