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