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