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