<style type="text/css">
H1{
font-family : 굴림체;
color : white;
}
H2{
font-family : 궁서체;
color : pink;
}
</style>
</head>
<body bgcolor="#400040">
<center>
<h1>스타일 시트 적용하기</h1>
<br><hr>
<h2>embedding 스타일</h2>
<br><hr>
</center>
head
안에 css를 써야한다.style
부분에서만 바꾸면 되서 편리하다.<head>
<title>Document</title>
<link rel="stylesheet" type="text/css" href="sample.css">
</head>
<body>
<center>
<h1>스타일 시트 적용하기</h1>
<br><hr>
<h2>link 스타일</h2>
<br><hr>
</center>
//이런 링크를 만들어서 여기서 글자체와 글자색깔을 한 번에 바 꿀 수 있다.
H1{
font-family : 굴림체;
color : while;
}
H2{
font-family : 궁서체;
color : pink;
}
head
부분에 링크 걸기<h1 style="font-family:굴림체; color:blue">스타일 시트 적용하기</h1>
<br><hr>
<h2 style="font-family:궁서체; color:pink">inline 스타일</h2>