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