Font Awesome Icon Not Showing

The github icon (line 29 is not showing up)… I add the font awesome cdn (shouldn’t inside bootrstrap cdn?

Please, help

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title>Juliana's Portfolio</title>
        <!-- Add CSS Bootratrap CDN -->
        <link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet" media="screen">
        <!-- Add CSS personalizado -->
        <link href="css/estilo.css" rel="stylesheet">
        <!-- Add Bootstrap Side NavBar -->
        <link href="css/navbar-fixed-side.css" rel="stylesheet" />
        
        <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
    </head>
    <body>
        <!-- Left NavBar -->
        
     <div class="container-fluid">
        <div class="row">
            <div class="col-sm-3 col-lg-2">
                <nav class="navbar navbar-default navbar-fixed-side cinza">
                    <!-- normal collapsible navbar markup -->
                        
                        <img class="img-fluid img-circle center" src="https://raw.githubusercontent.com/nanquim/freeCodeCampNanquim/master/minhaCara.png" alt="Juliana Nascimento Developer">
                        <h4 class="text-center">Juliana Nascimento's Portfolio</h4>
                        
                    <hr>
                   
                    <a href="https://github.com/nanquim"><i class="fa fa-github" style="font-size:48px; color: red"></i></a>
                    
                </nav>
            </div>
            <div class="col-sm-9 col-lg-10">
                    <!-- your page content -->
            </div>
        </div>
     </div>
        
    </body>
</html>

Hi! What does it show in the browser?

1 Like

try adding rel=“stylesheet”

2 Likes

Yes, this is it…

That was dumb… THANKS

It happens to all of us. :slight_smile:

1 Like

Hi everyone,

I have a same problem, I added rel=“stylesheet” but still can’t see the icon.is there any other solution?