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