Bulma icon not showing up?

Psidom picture Psidom · Dec 6, 2017 · Viewed 10.6k times · Source

I am trying to use bulma icons following the docs here, but the icon doesn't show up:

Also see the fiddle here, what could be the problem?

Answer

T Porter picture T Porter · Dec 6, 2017

You also need to include the bulma.min.css file, not just the .map.

Edit

Per the Bulma docs:

If you want to use icons with Bulma, don't forget to include Font Awesome:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">

Update 3/19/2019

As @Akshay has pointed out below, the documentation has changed and the proper way to include Font Awesome is now

<script defer src="https://use.fontawesome.com/releases/v5.3.1/js/all.js"></script>