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