Editor Arrow Download Open
<!DOCTYPE html> <html> <head> <title>CSS hyperlink</title> <style type="text/css"> a:link { text-decoration: none; } a:visited { text-decoration: none; } a:hover { text-decoration: underline; } a:active { text-decoration: underline; } </style> </head> <body> <div>Click here to open <a href="../tutorial.php" >CSS example</a> page.</div> </body> </html>
  Preview Arrow