Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
<p><font style="color:red; font-size:40px;">SCHRIFT</font></p>
<h1>1. Einführung</h1>
<h1>2. Analyse</h1>
<h2>2.1 Anforderungen</h2>
<h3>2.1.1 Abteilung A</h3>
<h3>2.1.2 Abteilung B</h3>
...
<h2>2.2 Ist-Analyse</h2>
...
Stimmt nicht ganz. Mit html ist es nur veraltet und viele Leute kennen es daher nicht:Farbe kriegt man da glaub ich nur mit Css rein...?!??!
<p><font color="z.b. red">Text</font></p>
Ich würd' sagen: Zu viele Leute kennen es noch.Stimmt nicht ganz. Mit html ist es nur veraltet und viele Leute kennen es daher nicht:
HTML:<p><font color="z.b. red">Text</font></p>
<head>
<link rel="stylesheet" type="text/css" href="datei.css">
</head>
/* Schriftstile */
body { /* Bodybereich wird bearbeitet */
background: #FFFFFF; /* Hintergrund wird bestimmt. Für Hintergrund-Bild nimm einfach background-image */
font-family: Verdana, Arial; /* Hier wird die Schriftaret ausgewählt */
font-size: 10pt; /* Hier die Schriftgrösse */
color: #00000; /* Hier die Schriftfarbe */
text-decoriation: none; /* Keine Text-Dekorationen (unterstrichen, fett, usw)*/
}
table, tr, td { /* Hier dasselber wie bei body, aber hier werden die Tabellen formatiert. */
body {
font-family: Verdana, Arial;
font-size: 10pt;
color: #00000;
text-decoriation: none;
}
/* Allgemeine Links - Hier sind die Hyperlink formatierungen */
a:link { /* Im Normalstatus */
font-family: Verdana, Arial;
font-size: 10pt;
color: #00000;
text-decoriation: underline; /* Unterstrichen */
}
a:hover { /* Bei Mouseover */
font-family: Verdana, Arial;
font-size: 10pt;
background: #00000; /* Hintergrund bei Mouseover */
color: #FFFFFF;
text-decoriation: none;
}
a:visited { /* Bei besuchten Links (empfehle hier wie bei a:link) */
font-family: Verdana, Arial;
font-size: 10pt;
color: #00000;
text-decoriation: underline;
}
a:active { /* Bei aktiven Links (empfehle hier auch wie bei a:link) */
font-family: Verdana, Arial;
font-size: 10pt;
color: #00000;
text-decoriation: underline;
}