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