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