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