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