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