Hi
I was wondering what the best practice is to do tabbed spaces in HTML / CSS for stuff like menus, opening times, contact detail etc.
If I "paste special" in dreamweaver it kind of works, although not accross browsers and it is just adding loads of   tags for every space... Not a good method I am sure.
How would you line this up for example so it was tabbed:
Email:
enquiries@ecofrost-uk.com
Phone: 01274 649720
Mobile: 07531712315
Address: 4 Mendip Way
Bradford
West Yorkshire
BD12 0ED
Would you make 2 divs?
This is how it looks at the moment, the address is not lined up properly:
http://vicarscafebistro.co.uk/website/contact.html
This is the horrendously messy code I have at the moment
Code:
<div class="text">
<p><img src="Contact.jpg" alt="Contact us" width="139" height="37" /></p>
<p> </p>
<p>Email: <a href="mailto:enquiries@ecofrost-uk.com">enquiries@ecofrost-uk.com</a></p>
<p> </p>
<p>Phone: 01274 649720</p>
<p> </p>
<p>Mobile: 07531712315</p>
<p> </p>
<p>Address: 4 Mendip Way<br />
Bradford<br />
West Yorkshire<br />
BD12 0ED</p>
<!-- end .text --></div>
Thanks in advance