what program are you using?
typically in the graphics program you can select where you want to display different "layers" whether they be text or an image or a graph etc...
If you are talking about presentation on a website, you have a couple of choices... you apply a break line tag after the end of every line (not-recommended) or you could use a mixture of html and CSS to apply the appropriate layout
also to take into consideration is what is going to be in the two columns, and how wide would you like them?
HTML Code:
<div>
<p>Text</p>
<p>Image</p>
<div class="left">
<p>Col1 - Row1 - Paragraph1</p>
<p>Col1 - Row2 - Paragraph2</p>
</div>
<div class="right">
<p>Col2 - Row1 - Paragraph1</p>
<p>Col2 - Row2 - Paragraph2</p>
</div>
<p class="footer">SOMETHING</p>
</div>
css styles
Code:
div#left {
float: left;
width: 45%;
}
div#right {
float: right;
width: 45%;
}
p#footer {
clear:both;
}
Bookmarks