Plusieurs lignes de texte à côté de l'image (CSS, HTML)

Je suis en train de mettre 2 lignes de texte à côté d'une image, un peu comme ce

_________
|       | Line one of text
| image |
|       | Line two of text
---------

C'est le code que j'ai jusqu'à présent

<p style="color: #fff;"><img src="assets/image.png"><span style="">Line one of text</span>
    <br>
    <span class="ban2">Line 2 of text</span></p>
 .banner p {
  font-family: "Gentium Basic";
  font-size: 19px;
  text-align: center;
  color: #aaa;
  margin-top: -10;
  display: block;
 }
.banner img {
  float: center; 
    margin: 5px;
 }
 .banner span {
  padding-top: 50px;
  font-size: 17px;
  vertical-align:top;
 }
  .banner .ban2 span {
  padding-top: 50px;
  font-size: 17px;
  vertical-align:top;
 }

Mais actuellement il fait ceci:

_________
|       | Line one of text
| image |
|       | 
---------
Line two of text

J'ai cherché partout sur le web, mais n'ont pas été en mesure de comprendre comment faire cela, toute aide serait la bienvenue.

InformationsquelleAutor OstlerDev | 2013-12-05