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