I have an Angular project and I want to go to the registration page when I click the registration button. I tried to link the registration page, but it didn't work, I'm a beginner, that is, when I click on registration, I want the main page to disappear and go to the navigation page. This is a main page and my navigation menu
and this is my registration page
this is my navigation menu code
<div class="container">
<div class="navbar-header">
<a class="navbar-brand white-color" href="#">Sarabanda</a>
</div>
<div>
<ul class="d-flex column">
<li class="rem"><a class="color" href="#">Job offers</a></li>
<li class="rem">
<a class="color" href="#">Curriculum Vitae</a>
</li>
<li class="rem"><a class="color" href="#">Post a job</a></li>
<span class="line rem"></span>
<li class="login-border rem">
<a href="#" class="bold login">Login</a>
</li>
<li>
<a href="/src/app/registration/registration.component.html" class="bold rem">Register</a>
</li>
<div>
</div>
