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