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