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