<a id="link" href="https://facebook.com"></a>
html, body {
  height: 100%;
}

body {
  display: grid;
  justify-content: center;
  align-content: center;
}

a {
  display: flex;
  align-items: baseline;
  color: #333;
  font-size: 1.5em;
  text-decoration: none;
}

[href]::before {
  content: " ";
  display: inline-block;
  margin: 0 10px 0 0;
  font-family: "Font Awesome 5 Brands";
  font-weight: 400; 
  font-size: 1.2em;
}

[href*="facebook"]::before {
  content: "\f09a";
}

[href*="twitter"]::before {
  content: "\f081";
}

[href*="instagram"]::before {
  content: "\f16d";
}

[target]::after {
  content: "\f35d";
  display: inline-block;
  margin: 0 10px 0 0.75em;
  font-family: "Font Awesome 5 Free";
  font-weight: 400; 
  font-size: 0.8em;
}
const link = document.getElementById('link')
link.textContent = link.href

External CSS

  1. https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.3/css/bootstrap.min.css

External JavaScript

This Pen doesn't use any external JavaScript resources.