12 lines
277 B
HTML
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>
|