doc_visited.html (744B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="UTF-8"> 5 <style type='text/css'> 6 a:visited, #visited-and-other-matched-selector { 7 background-color: transparent; 8 border-color: lime; 9 color: rgba(0, 255, 0, 0.8); 10 font-size: 100px; 11 margin-left: 50px; 12 text-decoration-color: lime; 13 text-emphasis-color: seagreen; 14 } 15 a:visited { color: lime; } 16 a:link { color: blue; } 17 a { color: pink; } 18 </style> 19 </head> 20 <body> 21 <a href="./doc_visited.html" id="visited">visited link</a> 22 <a href="#" id="unvisited">unvisited link</a> 23 <a href="./doc_visited.html" id="visited-and-other-matched-selector"> 24 visited and other matched selector 25 </a> 26 </body> 27 </html>