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