h1 {
color: yellow;
font-size: 2em;
background-color: black;
}
html의 속성은 attribute
css의 속성은 property
두 개는 각각 다르다.
주석
/*주석*/
<h1 style="color: yellow; font-size: 2em; background-color: black;">h1</h1>
<style>
h1 {
color: yellow;
font-size: 2em;
background-color: black;
}
</style>
<link rel="stylesheet" href="style.css">
rel은 연결되는 파일이 html 문서와 어떤 관계인지를 명시하는 속성이다.
css파일을 연결할 경우 stylesheet라고 적어야한다.
@import url('css/style.css');
스타일 내에서 다른 스타일 시트 파일을 불러오는 것
style 태그 내부 상단이나 외부 스타일 시트 파일 안 상단에 선언.
거의 쓰이진 않는다.