1. | If desired, remove the styling from your links by typing a {text-decoration: none; color: black}.
|
2. | Add a new pseudo-selector for adding content after links by typing a:after.
|
3. | Type the beginning { for the declaration.
|
4. | Type content: to specify which content should appear after links.
|
5. | To precede the link URL with a space and parentheses, type " (".
|
6. | To add the URL itself, that is the value of the href attribute of the a element, type attr(href).
|
7. | To add the final parentheses, type ")".
|
8. | Type ; to complete the rule.
|
9. | Add additional formatting for the link URL, if desired. I used font-style: italic;.
|
10. | Finish the declaration with a }.
|