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