Daniel, I solved this using tags in html. Please try this code.
MyHTML.html:-
<!DOCTYPE html>
<html>
<head>
<style>
.column {
width : 300px;
display: table;
}
.row {
border-top-width: 1px;
border-top-style: solid;
display: table-row;
}
.text {
padding: 10px;
width : 150px;
display: table-cell;
vertical-align: middle;
}
.sum {
padding: 10px;
vertical-align: middle;
display: table-cell;
}
</style>
</head>
<body>
<div class="column">
<div class="row">
<span class="text">150000000 USD =</span><span
class="sum">Rs.9587972846</span>
</div>
<div class="row">
<span class="text">15000000 GBP =</span><span
class="sum">Rs.1471043671</span>
</div>
</div>
</body>
</html>
http://www.w3schools.com/css/tryit.asp?filename=trycss_align_float
150000000 USD = Rs.9587972846
15000000 GBP = Rs.1471043671