Is it a common feature in HTML for a link not to be updated when clicked, or is this behavior controlled by the browser?

When a link in HTML is clicked, it is common for the browser to update the link's appearance to indicate that it has been visited. However, this behavior can also be controlled using CSS styles to override the default link behavior. By setting a specific style for visited links, you can ensure that the link's appearance does not change after it has been clicked. ```html <!DOCTYPE html> <html> <head> <style> a:visited { color: blue; /* set the color of visited links */ text-decoration: none; /* remove underline from visited links */ } </style> </head> <body> <a href="https://example.com">Visit Example</a> </body> </html> ```