I am trying to use bulma icons following the docs here, but the icon doesn't show up:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.6.1/css/bulma.min.css">
<div>
<span class="icon">
<i class="fa fa-home"></i>
</span>
<span>ICON</span>
</div>
Also see the fiddle here, what could be the problem?
fa fa-home
looks like font-awesome, you need the css and font files. I am unaware if bulma uses that, but it would not surprise me. – Alcoholicityfont-awesome.min.css
separately. In fact, you can see in file bulma.min.css that it does not link it nor contain the definitions for the icons. Edit: and thanks to the edit, it is now inaccurate too. – Alcoholicity