## The Parts Bin

Here, I've added an entire three-column div in html, to see how well it will work with this scheme. I have yet to come up with a satisfactory content generation or site navigation strategy, but that will come with time.

<div class="row">
  <div class="column left">
    <h3>Column 1</h3>
    <p>This is some text for column 1</p>
  </div>

  <div class="column middle">
    <h3>Column 2</h3>
    <p>Some more text for the middle column, which can be a lot more, because column 2 is huge</p>
  </div>

  <div class="column right">
    <h3>Column 3</h3>
    <p>The final bit of text</p>
    <p>Two paragraphs here</p>
  </div>
</div>

## The Text Part

After adding the column divs above, I can proceed to write markdown, as if this were just a markdown document! What a novel idea. I like it!