Use on the webTotal Use [ 5443 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/21a1184148d11d67c19f5076b909d63b?family=CircularSpotifyTxT-Book" rel="stylesheet">
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
@import url(https://db.onlinewebfonts.com/c/21a1184148d11d67c19f5076b909d63b?family=CircularSpotifyTxT-Book);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "CircularSpotifyTxT-Book";
src: url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.eot");
src: url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/21a1184148d11d67c19f5076b909d63b.svg#CircularSpotifyTxT-Book")format("svg");
}
2CSS rules to specify fonts
font-family: "CircularSpotifyTxT-Book";