Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> p:first-child { font-size: 1.5em; } a { color: darkorange; text-decoration: none; } a:visited { color: gray; } a:hover { color: green; border-bottom: 1px solid currentColor; } </style> <p>Here's a link to the <a href="https://www.quackit.com/">Quackit homepage</a>.</p> <hr> <p>More info: <a href="/css/css_hyperlinks.cfm">CSS Hyperlinks</a>.</p>