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