○스타일 시트 선언 방식




<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#inner{
background-color: aqua;
}
</style>
<link rel="stylesheet" href="./Ex21_외부방식.css">
<style>
@import url('Ex21_import방식.css');
</style>
</head>
<body>
<h1 style="background-color: greenyellow;"> 인라인 방식 </h1>
<h1 id="inner">내부 방식</h1>
<h1 id="out"> 외부 방식 : link태그</h1>
<h1 id="import">외부방식 : import방식</h1>
</body>
</html>
Ex21_외부방식.css
#out{
background-color: tomato;
}
Ex21_import방식.css
#import{
background-color: orange;
}

○스타일 시트 우선 순위


