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