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