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