Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <style> a { font-size: 2em; color: limegreen; text-decoration: none; border-bottom: 1px solid darkorange; } a:hover { color: darkorange; border-width: 3px; } </style> <p>You can use borders to create custom underlines on hyperlinks, like this:</p> <p>Go to the <a target="_blank" href="https://www.quackit.com/">Quackit Homepage</a>.</p>