🤔 CSS란? Cascading Style Sheet의 약자로, HTML로 작성된 정보를 꾸며주는 언어
selector {
property: value;
}
<h1 style="color: blueviolet;">HELLO</h1>
<button style="background-color: green;">I am button</button>
<head>
태그 안 <style>
태그 안에 입력해서 적용하는 방법<head>
<style>
h1 { background-color: yellow;}
</style>
</head>
<link>
태그로 외부 style sheet를 불러오는 방법<head>
<link rel="stylesheet" href="style.css">
</head>
✔ HTML, CSS 각각의 문서 안에서 style을 따로 관리하여 상대적으로 가독성이 높고 유지보수가 쉬운 장점이 있어, External Style 방식을 가장 많이 사용한다.