<!DOCTYPE html>
<html>
<head>
<title>My Web Page</title>
<style>
.type1{
text-align: center;}
</style>
</head>
<body>
<h1 class="type1">class가 type1인 헤딩입니다.</h1>
<p class="type1">class가 type1인 단락입니다</p>
</body>
</head>
</html>
<!----------------------------------------
p{background-color:yellow;}
selector{property:value;}
<head>
<style>
</style>
</head>
head 사이에 선언
-----------------
<html>
<head>
<title>My Web Page</title>
<style>
.type1{
text-align: center;}
</style>
</head>
<body>
<h1 class="type1">class가 type1인 헤딩입니다.</h1>
<p class="type1">class가 type1인 단락입니다</p>
</body>
</head>
</html>
<!----------------------------------------
p{background-color:yellow;}
selector{property:value;}
<head>
<style>
</style>
</head>
head 사이에 선언
-----------------
댓글
댓글 쓰기