Help me in solving FASH02 problem

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

<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>