[그누보드] 웹폰트 적용하기
- 08-13
- 46,013 회
- 0 건
부트스트랩 테마 테스트 페이지에 웹폰트를 적용한 간단한 코드입니다.
/extend 폴더에 PHP 파일을 생성 후 아래 코드를 입력하시면 됩니다.
[code]
<?php
function kh_web_font()
{
add_stylesheet('<link rel="stylesheet" href="https://webfontworld.github.io/NexonLv2Gothic/NexonLv2Gothic.css">', 0);
add_stylesheet('<style> body { font-family: "NEXONLv2Gothic", sans-serif !important; } </style>');
}
add_event('tail_sub', 'kh_web_font');
[/code]