How to write ::before inside anchor tag like this.

What you see here is a CSS pseudo-element.
::before pseudo-element can be used to insert some content before the content of an element. eg - the following code will insert This comes before... before every paragraph.
p::before {
content: "This comes before...";
}
<p>This is a paragraph</p>
<p>This is another paragraph</p>
For more information on CSS pseudo-elements, refer to this link.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With