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