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