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