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