• Jetzt anmelden. Es dauert nur 2 Minuten und ist kostenlos!

Frage zur Textformatierung

Status
Für weitere Antworten geschlossen.

JAK0B

Neues Mitglied
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:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  <meta http-equiv="Content-Style-Type" content="text/css">
  <title>SIGNATUR</title>
  <meta name="Generator" content="Cocoa HTML Writer">
  <meta name="CocoaVersion" content="824.42">
  <style type="text/css">
    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}
  </style>
</head>

<body>
<p class="p1"><span class="s1">contact one</span><span class="s2"><br></span>
    
    Agentur für Kommunikation</p>

<p class="p2">

    Rathausufer 23<br>
    40213 Düsseldorf</p>
    
<p class="p2">

    Tel: 0211/......<br>
    Fax: 0211/......<br>
    Mobil: ..../......<br>
    Mail:  <a href="mailto:[email protected]">[email protected]</a><br>
    Web:   <a href="http://contact-one.de">http://contact-one.de</a></p>

</body>
</html>
Das was ich will, ist, dass die Nummern, etc. wie hier:

Tel.: ..../......
Mobil: ..../......
eMail: [email protected]


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.
 
Oder divs. Z.B.:

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

Code:
.item div { float: left; }
.name { width: 100px; }
.value { width: 200px; }
 
Status
Für weitere Antworten geschlossen.
Zurück
Oben