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