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