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