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