Frage zur Textformatierung

Hallo, ich habe mir neulich eine Signatur in HTML Format erstellt.
Das einzige was mich daran stört ist, dass ich gerne hätte, dass Telefonnummer, etc. genau an der selben Stelle beginnen.

Hier der HTML Code:
[html]

SIGNATUR p.p1 {margin: 0.0px 0.0px 13.0px 0.0px; font: 10.7px Trebuchet MS; color: #808080} p.p2 {margin: 0.0px 0.0px 13.0px 0.0px; font: 13.3px Trebuchet MS; color: #000000} span.s1 {font: 24.0px Trebuchet MS} span.s2 {font: 13.3px Trebuchet MS}

contact one

Agentur für Kommunikation</p>

Rathausufer 23<br>
40213 Düsseldorf</p>

Tel: 0211/......<br>
Fax: 0211/......<br>
Mobil: ..../......<br>
Mail:  <a href="mailto:js@contact-one.de">js@contact-one.de</a><br>
Web:   <a href="http://contact-one.de">http://contact-one.de</a></p>
[/html]Das was ich will, ist, dass die Nummern, etc. wie hier:

Tel.: …/…
Mobil: …/…
eMail: bla@bla.bla

bzw. bei den letzten beiden Daten (Mobil und eMail), weil es die gleiche
Anzahl an Charaktären ist, stehen.

Wie bekomme ich das hin!?

Vielen Dank im Voraus,
MfG Jakob.

Nimm ne Tabelle.

Oder divs. Z.B.:

<div class="item"><div class="name">Tel.:</div><div class="value">0211/...</div></div>mit dazugehörigem CSS:

.item div { float: left; } .name { width: 100px; } .value { width: 200px; }