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