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