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