Attempting to create a customized header. My goal is to change the color and remove text decoration in the navbar. Below is my code snippet:
ReactJS:
import React from 'react';
import './Header.css';
function Header() {
return (
<nav className="header">
<a href="#">Home</a>
<a href="#">About</a>
<a href="#">Projects</a>
<a href="#">Resume</a>
</nav>
)
}
export default Header;`
CSS:
.header {
background-color: #171A25;
align-items: center;
color: white;
word-spacing: 33px;
text-align: center;
}