I am just trying to align all the contacts in a neat straight line so that it looks in order. what is the code for it? the look on the div is what I am trying to accomplish. The image is the problem.
Edit: I prefer not to use   since I have to place it every time I want to add a space.
[HTML]
<div class="col-md-6 services-margin">
    <img class="flagsize" src="../../../img/flag_brunei.png">
    <div class="services">
        <p class="country-title">Brunei</p>
        <p>Ambulance         :991</p>
        <p>Police            :993</p>
        <p>Fire and Rescue   :995</p>
        <p>Search and Rescue :998</p>
    </div>
</div>
[CSS]
.services-margin {
    margin-bottom: 25px;
}
.country-title {
    font-weight: bold;
    font-size: 15px;
}
.flagsize {
    width: 40%;
    float: left;
    height: 140px;
    width: 250px;
    margin-right: 10px;
}
.services {
    float: left;
}

 
     
     
     
     
     
    