JSFiddle - React, Tailwind, and code Playground

HTML

<html>

<body>

  <address class="links">
    <p>
    Jeremy is on:
    </p>
    <a href="https://www.linkedin.com/">
      LinkedIn
    </a>
    <a href="https://stackoverflow.com/users/5889131/jeremysprofile">
      Stack Overflow
    </a>
  </address>

</body>
</html>

CSS

/* Common classes between header and footer */
.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-style: normal;
  
}
p {
  margin: 0;
}