<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.href = 'https://twitter.com'
link.textContent = link.href
This Pen doesn't use any external JavaScript resources.