Several things -
Firstly, if you're going to be using CSS then you need a complete DOCTYPE otherwise browsers are thrown into Quirks mode and behave unpredictably. Try:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
Next you're using tables to lay out the page so I'm not sure how well the solution will work in amongst all those table cells!!
Anyway - tables aside I'd structure it like this:
HTML:
<div class="wrestlers">
<img src="whatever.jpg" alt="wrestler's name goes here" height="90" width="90" >
<h3>Wrestler's Name here</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse cursus malesuada ipsum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
</div>
<div class="wrestlers">
<img src="whatever.jpg" alt="wrestler's name goes here" height="90" width="90" >
<h3>Wrestler's Name here</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse cursus malesuada ipsum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
</div>
<div class="wrestlers">
<img src="whatever.jpg" alt="wrestler's name goes here" height="90" width="90" >
<h3>Wrestler's Name here</h3>
<p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Suspendisse cursus malesuada ipsum. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
</div>
CSS:
div.wrestlers {background-color:#e2e2e2;width:600px;margin-bottom:10px;}
div.wrestlers img {float:left; margin:5px;}
div.wrestlers h3 {font-size:90%;margin:5px 0 8px 110px;}
div.wrestlers p {margin: 2px 10px 8px 110px;}
Things to note:
The paragraph and headings are given a margin comensurate with the width of the photo plus a little bit more to make it look neat. If the photo is too small then the paragraph will end up under it and won't look so neat.
You can obviously add styling information such as colours and fonts into the rules above to change the look - you don't need to add anything into the tags themselves.
You can re-use classes as I have done in this example, as many times as you like on a page - however you can only use ids once.
Here's a working example:
http://www.littleblueplane.com/test/wrestlers.html
And this version: http://www.littleblueplane.com/test/wrestlers1.html takes into account the fact that you might want more than a single photo in the section - slightly different CSS in there, look at the source to see what I've done.