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