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