How do I make social font awesome icons in bootstrap 4?

The title pretty much sums it up.

I don’t think bootstrap would have anything to do with font awesome icons. You can use font awesome with or without bootstrap.

Anyway, you can

  1. Add <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"> in your HTML.
  2. Then you should now be able to add font awesome icons on your page. Like
<i class="fa fa-twitter"></i>

Take your pick of your social media icons here: http://fontawesome.io/icons/#brand
You can find more usage examples here: http://fontawesome.io/examples/

3 Likes

No it doesn’t, needs more explanation. You say “make”, but do you want to create new icons of your own or use existing font awesome ones?

My bad, I didn’t even know you could create new icons. Thanks for the info.