programming-examples/css/A tag active.html
2019-11-15 12:59:38 +01:00

12 lines
277 B
HTML

<html>
<head>
<title>A Tag Active</title>
<style>
a:active { font-weight:bold; color:blue}
</style>
</head>
<body>
<p>Press tab key to bring the link into focus.</p>
<a href="http://www.happycodings.com">happycodings.com Programming Code Examples</a>
</body>
</html>