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