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