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