December 2017
Beginner
372 pages
10h 32m
English
For the header component, this is the meat of the code. We define our navigation bar with the application logo and the links to our news outlets. Check out the code for our header.component.html file:
<nav class="navbar navbar-light" style="background-color:whitesmoke"> <a class="navbar-brand" href="#" style="padding: 10px"> <img src="assets/Logo.png" width="35" height="35" alt=""> </a> <div class="container-fluid"> <div class="navbar-header"> <a class="navbar-brand" href="#">Sports News Combinator</a> </div> <ul class="nav navbar-nav"> <li><a routerLink="/nfl" routerLinkActive="active" >NFL</a></li> <li><a routerLink="/espn" routerLinkActive="active" >ESPN</a></li> <li><a routerLink="/fox" routerLinkActive="active" >
Read now
Unlock full access