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