FontAwesome Icon

by hronic

HTML

<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
<a class="my_music_icon" href="http://google.com/">Музыка</a>
<br />
<span class="fa fa-camera-retro icon">Фильмы</span>

CSS

.my_music_icon:before {
  content: "\F001 ";
  font-family: 'FontAwesome';
  display: inline-block;
  margin-right: .3em;
  color: #000;
}

.icon:before {
  margin-right: .3em;
}