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