This is an archived forum post. The information may be outdated. Contact us if you have any questions.

Font weight problem..

Bumjoo Hwang wrote on 2015-11-14:
Hi,
I tried to use @font-face with 'NanumGothc.woff' font and it worked correctly using 'font-weight:normal' and 'font-weight:bold' in brower .
but 'font-weight:bold' didn't work in converting PDF.

My test page is 'http://frontrange.kr/test/test.html'

Please help me.
support wrote on 2015-11-18:
Hello,

You need to provide two font files - the normal and the bold versions. Can you try the following and let me know if it helps? [Don't forget to replace NanumGothicBold.woff below with correct file name]
@font-face{
	font-family:NanumGothic;
	src:url(http://frontrange.kr/intranet/font/NanumGothic.woff) format('woff');
        font-weight: normal;
        font-style: normal;
}
@font-face{
	font-family:NanumGothic;
	src:url(http://frontrange.kr/intranet/font/NanumGothicBold.woff) format('woff');
        font-weight: bold;
        font-style: normal;
}
Bumjoo Hwang wrote on 2015-11-19:
yep. I added BOLD font. and It's worked correctly...thanks.