본문 바로가기

Programming/HTML

html 스타일(style) 사용법


* 문서에 직접 스타일을 입력 : head 부분에 위치

<style type="text/css">
<!--
     스타일 관련 내용
-->
</style>

* 스타일시트 파일 불러오기 (확장자 .css)
 <link rel="stylesheet" type="text/css" href="스타일시트 URL">