I am working on an Angular project and I am looking to navigate to the registration page when the registration button is clicked. As a beginner, I attempted to link the registration page but encountered some issues. My goal is for the main page to disappear and switch to the registration page upon clicking the registration button. Here is the main page along with my navigation menu
And here is the registration page
This is the code for my navigation menu:
<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>