Title Positioning

CSS style sheet for example

CSS Code

...
div.title {
  width: 100%;
  margin: 0;
  padding: 0;
  border-bottom-width: .125em;
  border-bottom-style: solid;
  border-bottom-color: #CC3300;
}
...

HTML Code

...
<div class="title">

  <h1>CSS Brownbag Website</h1>

</div>
...