I am currently studying Code Academy - Front End Developer course and next to it, I am trying to create my website.. I am really trying as this is my first time doing such thing. And I am already feeling lost and stupid.
I got stuck on my header already!
I have my header where I want to place my logo (on the left side) and next to it, I want my nav bar to appear (not right next to it, I want the nav bar to be more less in the centre of the page)
here is how it looks like now:
我如何能够这样做? 而且,如果你能够解释为什么应该这样做的话,我也会爱心,因此,我不只重复该守则,而是实际学习。 感谢您的帮助!
<!--THIS IS MY HEADER-->
<div>
<header class="header">
<img class="logo" src="./Pictures/Screenshot 2023-12-22 at 19.40.06.png" alt="My Image">
<nav class="navbar">
<ul>
<li>ABOUT ME</li>
<li>MY WORK</li>
<li>CONTACT</li>
</ul>
</nav>
</header>
</div>
CSS
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.header {
background-color: white;
border-bottom: solid;
}
.logo {
width: 188px;
height: 90px;
}
.navbar{
list-style-type: none;
display: flex;
width: 100%;
justify-content: space-evenly;
}