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