๐ฉ ์น ๋ฌธ์๋ฅผ ๊ตฌ์ฑํ๋ 3๊ฐ์ง ์์
1. HTML
2. CSS
3. Javascript
style
์์ฑ์ ์ฌ์ฉํด ์คํ์ผ ๋ถ์ฌ <body>
<h1 style="color:black"> header์
๋๋ค.</h1>
</body
<head>
ํ๊ทธ ์์์ ์์ฑ <head>
<style type="text/css">
h1 {
color : black;
}
</style>
</head>
<link rel=stylesheet type="text/css" href="path/filename.css"/>
<style type="text/css">
@import url("path/filename.css");
</style>