Firefox预览版给了我空白页面

时间:2015-07-02 19:05:25

标签: html

Dreamweaver中的编码。右键单击以在Firefox或Chrome中预览HTML和CSS时,它会给我一个空白页面。 <title>显示,但就是这样。

这是标题的代码:

<!doctype html>
<html>
    <head>
        <title>Goats for Sale | Clayson Ridge Farm
        <!-- Responsive Stylesheets -->
        <link rel="stylesheet" media="only screen and (min-width: 769px)" href="styles.css" type="text/css">
        <link rel="stylesheet" media="only screen and (max-width: 768px) and (min-width: 481px)" href="768styles.css">
        <link rel="stylesheet" media="only screen and (max-width: 480px)" href="480styles.css">
        <!-- End Stylesheets -->

        <meta name="viewport" content="width=device-width, initial-scale=1">
        <meta charset="utf-8">
    </head>

1 个答案:

答案 0 :(得分:3)

你的头衔没有关闭。它应该是:

    <title>Goats for Sale | Clayson Ridge Farm</title>
相关问题