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