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