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