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