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