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