I want to make my Logo in my header clickable and link to the homepage but i don't know exactly how to do this right.
My code:
Navigation menu:
HTML
<div id="myMenu">
            <div class="myWrapper">
                <nav>
                    <div class="logo"></div>
                </nav>
            </div>
        </div>
CSS
#myMenu
{
    width: 100%;
    height: 30px;
    z-index: 999; 
    background-color: #252e30;
}
.myWrapper
{
    max-width: 660px;
    margin: 0 auto;
}
.logo
{
    display: inline-block;
    width: 156px;
    height: 30px;
        margin-top: 5px;
        background-size: auto 43px;
    background-image: url(../images/mylogo.png);
    background-repeat: no-repeat;
}
I want my logo make clickable and link to the page: Homepage.cshtml