10 lines
230 B
HTML
10 lines
230 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
a { text-decoration: none; color: initial; display: block; margin: 2px; }
|
|
.green { color: green; }
|
|
</style>
|
|
<a href="visited-page.html">
|
|
<div>
|
|
<span class="green">Should be green</span>
|
|
</div>
|
|
</a>
|