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