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