Possible Duplicate:
CSS styling – how to put these two div boxes adjacent
I have to 2 paragraphs:
Para 1
Para 2
How can I make it appear like:
Para1 Para2
Both in their own space and box.

<div>
<div class="block" id="profile">
<h3>Professional Profile</h3>
<p>Knowledge in all aspects of web application development.
My Skills to solve programming errors gets the job
faster. Proficient in performance tuning database applications.</p>
</div>
What do I do in here?
<div class="block" id ="contact">
<p>
<h3> Contact</h3>
<address>Written by W3Schools.com<br /><a href="mailto:rjohn5854@howardcc.edu">
Email Me!!!</a><br />Address: Box 3223,City<br />Phone:6750</address>
<p>
</div>
</div>
CSS
div.block p {
display: inline-block;
}
In your css:
In your html:
Note div’s or paragraphs must be aligned to have this happen. If you put a div inside a div or a paragraph inside a paragraph it will not work.