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