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