Build a Product landing page-Help needed

hey, i’m currently working on building a product landing page and i want to know how do i align all my elements
of my header in a straight line.
here’s my pen on codepe.io:

Try adding this to your code.

header{
  display:flex;
  flex-direction:row;
  justify-content:space-around;
}

Please Don’t use inline styles. It’s not a good practice.

1 Like