XML + XSL + CSS -> HTML
다음과 같이
XML 소스상단에 XSL 링크 설정으로 HTML 테스트 할 수 있음.
1 2 3 |
<?xml:stylesheet type="text/xsl" href="default.xsl" ?> |
XSL 소스상에 <HEAD></HEAD>에 CSS 링크 를 넣는다.
1 2 3 |
<link rel="stylesheet" type="text/css" href="default.css"/> |