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