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