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