Hi
I was wondering if anyone could help me with these questions:
-Where should <div class="container-fluid>"
or <div class="container>" be placed? I seem to recall that in the freeCodeCamp exercises, I placed it right after <body>.
-If I’m creating a navigation bar, would I be able to start with something like this:
<body>
<header>
<div class="container-fluid"> or <div class="container">
<nav class="navbar navbar-default navbar-fixed-top">
<div class="navbar-header">
Most codes I see don’t have <header> tags. Also the <nav> tags come BEFORE <div class="container"> or <div class="container">, not after.
Many thanks in advance!