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