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