style
속성을 주어 css
를 선언하는 방식 <div style="color: green; font-size: 20px; font-weight: bold;">Hello</div>
HTML
파일의 style
태그 안에 css
를 선언하는 방식 <head>
<style>
div {
color: green;
font-size: 20px;
font-weight: bold;
}
</style>
</head>
<body>
<div>Hello</div>
</body>
link
태그를 이용하여 외부 문서로 css
를 불러와 적용하는 방식html
<head>
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div>Hello</div>
</body>
css
div {
color: green;
font-size: 20px;
font-weight: bold;
}