Schriftformatierung (HTML oder CSS ?)

HTML-Kode

Über Style-Sheets


I. ohne Attribute

<b>...</b>
<strong>

<i>

<em>

<u>

<big>
<tt>

<s>
<strike>
<small>
<sub>

<sup>
<center>

<blink>

II. mit Attribute
<font
size=>
<font
color=>
<font
face=>
<div
align=>

 

 

 

 

 

 


z.B.

<font
size="5"
color="red"
face="Arial">
Text
</font>

lokaler Style-Sheet-Bereich
(Schnellformatierung)

zentraler Style-Sheet-Bereich

<span style="font-size:2cm;">Text</span>


 style="font-weight:     bold;">
 style="font-style:     italic;">
 style="text-decoration:  underline;">
 style="font-size:       x-large;">
   (120%,18pt,10mm,1cm,xx-small,xx-large)

  style="font-weight:  bold;">
   (lighter,bold,bolder,100-900)

  style="text-transform:  uppercase;">
 style="letter-spacing:  1cm;">
 style="margin-left:     2.7cm;">
 style="font-size:   12pt;">
 style="color:       #FF0000;">
 style="font-family:  Arial;">
 style="text-align:  center;">

 

 

 

 


z.B.

<p style="font-size:         12pt;
         color:
                #FF0000;
         font-family:
        Arial;
         text-align:
        center;">
Text2
</p>

 

 

 

 

Hinweis:
span und div sind ohne Formate
<div ....         erzeugt ein Zeilenumbruch
<span...         ist ohne Zeilenumbruch

Im <head> Bereich

in eigener *.CSS-Datei


1. CSS für HTML-Tags

<head>

 <style type="text/css">
 h1,h3    {font-size:24pt; color:red;}

  // h1 und h3 werden geändert
 a:link u {text-decoration:none;}

  // a&u-Verschachtelung ohne Unterstreichung
</style>
</head>


2. CSS für Format-Unterklassen

<head>

 <style type="text/css">

  h6.prog{ font-family:Courier;}

  p.gross{ font-size:14pt; color:black;}

  p.klein{ font-size:8pt; color:black;}

  .rot{ color:red;}
 #pos1{position:absolute;top:20px;left20px;}

 </style>

</head>

 

 

 

<body>

 <h6 class="prog"> Für Listings    </h6>

 <p  class="gross">14 Punkt schwarz</p>

 <p  class="klein">8 Punkt schwarz </p>

 <i  class="rot">  rot ohne Absatz </i>

 <i  id="pos1">    kursiv links-oben</i>

</body>

 

1. HTML-Syntax <link...>

 

<head>

  <link rel="stylesheet"
       type="text/css"
       href="formate.css">


 <style type="text/css">

   optionale Formatierung.
 </style>


</head>

 

 

 

2. CSS-Syntax, für den gleichen Zweck

 

<head>

  <style type="text/css">

   @import url(formate.css);

  </style>

</head>

Siemens Professional Education Paderborn