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