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