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