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