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