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