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