jackethdavies

Untitled

Jun 4th, 2022
1,139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.46 KB | None | 0 0
  1. <style>
  2.     header {
  3.         display: flex;
  4.         flex-direction: row;
  5.         justify-content: space-between;
  6.         align-items: center;
  7.         width: 100%;
  8.     }
  9.  
  10.     ul {
  11.         list-style: none;
  12.     }
  13.  
  14.     ul li {
  15.         display: inline-block;
  16.         margin-right: 10px;
  17.     }
  18. </style>
  19.  
  20. <header>
  21.     <div>LOGO HERE</div>
  22.  
  23.     <ul>
  24.         <li>LINK ONE</li>
  25.         <li>LINK ONE</li>
  26.         <li>LINK ONE</li>
  27.     </ul>
  28. </header>
Advertisement
Add Comment
Please, Sign In to add comment