Skip to main content
Inspiring
October 10, 2018
Answered

Dreamweaver CC 'Untitled Document'

  • October 10, 2018
  • 1 reply
  • 617 views

I am using Dreamweaver CC (the latest version) and just started a new project. As usual, I use php server-side includes.

When I am looking at the web page in Design View, Dreamweaver shows "Untitled Document </head>" in the upper left corner, then it shows the pho included file, but does not show the rest oif the web page.

Here is the web page code:

<!doctype html>

<html>

<head>

<meta charset="utf-8">

<title>The Silver Spur Award Show</title>

<link rel="stylesheet" type="text/css" href="/css/index.css" />

</head>

<body><table width="960" border="0" align="center" cellpadding="0" cellspacing="0">

  <tbody>

    <tr>

      <td colspan="2" align="center" valign="top"><?php include("incl_header.html") ?></td>

    </tr>

    <tr>

      <td align="left" valign="top">Menu Goes Here</td>

      <td align="left" valign="top"> </td>

    </tr>

    <tr>

      <td width="150" align="left" valign="top"> </td>

      <td width="810" align="left" valign="top"> </td>

    </tr>

  </tbody>

</table>

You can also see this page at www.SilverSpurAwards.com/index.php.

As you can see, the title tag works in a browser, but not in Dreamweaver.

Ideas?

    This topic has been closed for replies.
    Correct answer Reel Cowboys

    NM, I figured it out. I was using an included file that still had all the header tags in it.

    1 reply

    Reel CowboysAuthorCorrect answer
    Inspiring
    October 10, 2018

    NM, I figured it out. I was using an included file that still had all the header tags in it.