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