html&css
[CSS] css 적용방식
yujeong kang
2020. 9. 20. 13:48
1. 외부 스타일 시트 적용
- link
<head>
<link rel="stylesheet" type="text/css" href="경로">
</head>
- @import
<head>
@import url("경로");
</head>
2. 내부 스타일 시트 적용
<head>
<style type="text/css">
h2 {
color: tomato;
}
.class {
font-size: 24px;
background-color: green;
}
</head>
3. 인라인 스타일 적용 : 유지보수에 용이하지 않음
<body>
<h2 style="color: tomato;">안녕</h2>
<div style="font-size: 24px; background-color: green;"></div>
</body>