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