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