I want to put a glyphicon of sorts somewhere, but want to use my own image for it. I first looked into the bootstrap components, found a glyphicon, and checked out the CSS. This looked like the part that was relevant to what I wanted.
.glyphicon-user:before {
content: "\e008";
}
I really don't know how to make sense of this. My final goal is to make something like <span class="glyphicon my-glyphicon"></span>
and have my own image show up just like the bootstrap kinds.
How is this done?