Portfolio Project Body tags not working

I have my header and navbar made out ithink pretty well. but when i try to start the body my <h4> doesnt show up underneath the navbar. its in the <body> tags . Heres my code:

<html>
  <link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Pacifico"/>
  <title>Aaron's Portfolio</title>
 
  <head>
    <nav class="navbar navbar-default navbar-fixed-top bg-primary" role="navigation">
      <div class="container-fluid topHead">
        <div class="navbar-header">
            <a class="navbar-brand text-default" class="brand" href="#">Aaron's Portfolio</a>
          </div>
          <ul class="buttons nav navbar-nav navbar-right">
            <li ><a href="#" id="btn" class="button">About</a></li>
            <li class="button"><a href="#" id="btn">Portfolio</a></li>
            <li class="button"><a href="#" id="btn">Contact</a></li>
           </div>
         </div>
        </div>
    </nav>
  </head>
    <body>
      <div class="well">
        <div class="row">
          <div class="col-lg-4">
           <h4>Front-End Developer</h4>
          </div>
        </div>
      </div>
    </body>
<html>

If you’re using a fixed navbar, you might have to increase your <body>'s top padding. Try adding this to your CSS; tweak to your liking:

body {
  padding-top: 70px;
}
2 Likes

:man_facepalming: Ugh thanks a ton that fixed it.