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