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