My issue
how
My code
// your code goes here
Learning course: Projects using HTML / CSS
Problem Link: Build Navigation Bar Practice Problem in Projects using HTML / CSS
how
// your code goes here
Learning course: Projects using HTML / CSS
Problem Link: Build Navigation Bar Practice Problem in Projects using HTML / CSS
<body>
<!--Adding header tag-->
<header>
<!--Adding div tag-->
<div class="NavBar">
<!--Adding anchor tag-->
<a href="", id="navbar-title">FASHION STORE</a> <!--This FASHION STORE text will be clickable-->
</div>
</header>
</body>
In this problem you are creating a nav bar in which there is anchor tag which is used to create hyperlink which takes us to other webpages and the attribute href in the code is used to define the destination of the link.