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