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