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