I have a website with a page (/categories.html) that contains around 50 p elements:
<p id='BCI'>Blue_colored_items</p>
<p id='RCI'>Red_colored_items</p>
...
What I want is for the page to only display:
Blue_colored_items
if the requested URL is:
/categories.html#BCI
and so forth for the other items. How can I achieve this? I am open to altering the entire HTML structure if needed.