Hi freecodecampers.
I’m curious to know why my code is running the fontawesome CSS from the link provided on the website (Here) correctly, but not when I manually include it by placing the downloadable fontawesome-all.css in my directory.
This is what I tried to do initially:
<link rel="stylesheet" href="./fontawesome-all.css"/>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./myportfolio.css">
<div class="col-4">
<h3>AROUND THE WEB</h3>
<i class="fab fa-facebook fa-lg"></i>
</div>
And then this is what I did for it to work.
<link href="https://use.fontawesome.com/releases/v5.0.6/css/all.css" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css">
<link rel="stylesheet" href="./myportfolio.css">
<div class="col-4">
<h3>AROUND THE WEB</h3>
<i class="fab fa-facebook fa-lg"></i>
</div>
What made it so the < i > didn’t show the brand’s logo, but instead an empty square?