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