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