left up right
Example
            
<style>
.mytext  {font-size:12pt; font-family:Verdana; color:red; 
          font-weight:bold}
.histext {font-size:12pt; font-family:Times; color:green; 
          font-weight:bold;font-style:italic}
</style>
....
<h1 class="histext">His Title</h1>
<p class="mytext"> This is a paragraph that I wrote.</p>
<h1 class="mytext">My Title</h1>
<p class="histext">This is a paragraph that my partner wrote.</p>

His Title

This is a paragraph that I wrote.

My Title

This is a paragraph that my partner wrote.