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