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