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