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