Use on the webTotal Use [ 6980 ] times
1Add to the head section of web page.
<link href="https://db.onlinewebfonts.com/c/1d556215e8140e27d0a189c5578a0ae1?family=Sky+TV+Channel+Logos" 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/1d556215e8140e27d0a189c5578a0ae1?family=Sky+TV+Channel+Logos);
orUse font-face declaration Fonts.(http | https)
@font-face {
font-family: "Sky TV Channel Logos";
src: url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.eot");
src: url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.eot?#iefix")format("embedded-opentype"),
url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.woff2")format("woff2"),
url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.woff")format("woff"),
url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.ttf")format("truetype"),
url("https://db.onlinewebfonts.com/t/1d556215e8140e27d0a189c5578a0ae1.svg#Sky TV Channel Logos")format("svg");
}
2CSS rules to specify fonts
font-family: "Sky TV Channel Logos";