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