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