<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Gestaltung von Links - Cascading Style Sheets - Workshop Internet-Präsenz</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Language" content="DE" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta name="description" content="Übung Cascading Style Sheets. Gestaltung von Links." /> <meta name="keywords" content="HTML, Cascading Style Sheets" /> <meta name="author" content="Roland Unger" /> <style type="text/css"> <!-- a:link { color: #00ff00; text-decoration: none; } a:visited { color: #0000ff; text-decoration: none; } a:hover { color: #ff0000; text-decoration: underline; } a:active { color: #00ffff; text-decoration: underline; } --> </style> </head> <body> <h1>Workshop Internet-Präsenz</h1> <h2>Gestaltung von Links - Cascading Style Sheets</h2> <p>Mit Hilfe der Pseudo-Klassen :link, :visited, :hover und :active können Sie die vier Zustände eines Links (noch nicht besucht, besucht, mit der Maus überstrichen, aktiv (Maustaste gedrückt) unterschiedlich darstellen.</p> <p>Dieser <a href="http://www.uni-halle.de" target="_top">Link führt zur Universität Halle</a>.</p> </body> </html>