This is a part from my HTML5 code:
<nav>
    <div class="dropdown">
        <button class="dropbtn">Home</button>
        <div class="dropdown-content">
        </div>
    </div>
    <div class="dropdown">
        <button class="dropbtn">Basic information</button>
        <div class="dropdown-content">
        </div>
    </div>
    <div class="dropdown">
        <button class="dropbtn">Technical parameters</button>
        <div class="dropdown-content">
        </div>
</nav>
Now I realized, that when I open my browser and I click in the menu for example on the home button nothing happens. How can I link the home button with my home.html document?
 
     
    