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