SereneTheif
SereneTheif

Reputation: 45

Firefox Preview Gives Me Blank Page

Coding in Dreamweaver. When right clicking to preview the HTML and CSS in Firefox or Chrome, it gives me a blank page. The <title> shows, but that is all.

This is the code for the header:

<!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>

Upvotes: 0

Views: 60

Answers (1)

Geoffrey Burdett
Geoffrey Burdett

Reputation: 1976

Your title doesn't close. It should be:

    <title>Goats for Sale | Clayson Ridge Farm</title>

Upvotes: 3

Related Questions