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