//--All text types
ul li(greater-than-symbol-goes-here)*:first-child::before {content: "→";}
//--Heading One Text Example
ul li(greater-than-symbol-goes-here)h1:first-child::before {content: "→";}
//--Heading Three Text Example
ul li(greater-than-symbol-goes-here)h3:first-child::before {content: "→";}
//--Paragraph Text
ul li(greater-than-symbol-goes-here)p:first-child::before{content: "→";}
//--Change the color too
ul li(greater-than-symbol-goes-here)*:first-child::before {content: "→"; color: red}
//--Change the color & font size
ul li(greater-than-symbol-goes-here)*:first-child::before {content: "→"; color: re; font-size: 2rem}
//--Change the color, font, and add a rotation
ul li(greater-than-symbol-goes-here)*:first-child::before {content: "→"; color: red; transform: rotate(45deg)}
Comments