CSS
- Cascading Style Sheets: Stufenförmige Formatvorlagen
- Formatierungssprache (Gestaltung, Design) für HTML, aber auch SVG und XML
- Vorteil: Trennung des Inhalts von Struktur und Design
Beispiel:
HTML<p>Text</p>
CSSp {
background: blue;
color: white;
}