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