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