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