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