https://i.sstatic.net/0Db7y.jpg
I have a portfolio as an h1 element and navigation links in an unordered list. How can I position these items exactly as indicated, inline with the portfolio title? Any assistance is appreciated.
#navbar h3
{
color: gold;
text-align: center;
margin-top: 0;
}
#navbar ul li
{
list-style-type: none;
padding: 20px;
font-size: 20px;
margin-right: 15px;
border-radius: 15px;
}
#navbar ul li a
{
text-decoration: none;
color: white;
}
#list
{
display: flex;
flex-direction: row;
float: left;
justify-content: space-around;
}
<nav id="navbar" >
<h3>PORTFOLIO</h3>
<ul id="list">
<li><a href="#">HOME</a></li>
<li><a href="#">SKILLS</a></li>
<li><a href="#">CONTACT</a></li>
</ul>
</nav>