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