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