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