Just added: Algorithms you can run and practice
html
<style>
  body { margin: 0; font-family: system-ui, sans-serif; }
  a { text-decoration: none; }

  .site-nav {
    display: inline-flex;
    height: 64px;
    padding: 0 24px;
    background: #12263f;
  }

  .brand { color: #fff; font-size: 22px; font-weight: 700; }
  .links a { color: #b9c6d6; font-size: 15px; margin-left: 24px; }
</style>

<nav class="site-nav">
  <a class="brand" href="/">Northwind</a>
  <div class="links">
    <a href="/docs">Docs</a>
    <a href="/pricing">Pricing</a>
    <a href="/login">Log in</a>
  </div>
</nav>