You can do it like this:
HTML:
<div class="left">
Tags:
</div>
<div class="right">
Apple Banana Melon Strawberry Kiwi Orange
Pineapple Carrot Onion Tomato Bacon
Sandwitch SoyBeans Pork Beef Chicken
</div>
CSS:
.left, .right
{
color:#2B91AF;
}
.left
{
float: left;
width: 30px; //adjust this width according to your needs
margin-right: 10px; //adjust this margin according to your needs
}
.right
{
float: left;
width: 400px; //adjust this width according to your needs
}
Here is a fiddle just because it's nice:
http://jsfiddle.net/VQjGW/