What am I doing wrong with dreamweaver?

ASATopGun

New Member
Im entering a text into the header portion but it is appearing in my content area. I will post two pictures so that you may see maybe I have something in the coding wrong. Thank you
 

Attachments

  • 1.jpg
    1.jpg
    19.2 KB · Views: 30
  • 2.jpg
    2.jpg
    20.6 KB · Views: 30

Phreaddee

Super Moderator
Staff member
you've closed your header div before you've added your h1.

<div id="header">header</div>
<h1>hello</h1>

if you want the h1 to be contained in the header it'll need to be

<div id="header">header
<h1>hello</h1>
</div>
 
Top