영상
개념
<!DOCTYPE html>
<html lang="ko">
<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>
p.type1 {
text-align: center;
}
</style>
</head>
<body>
<h1 class="type1">class가 type1인 헤딩입니다.</h1>
<p class="type1">class가 type1인 단락입니다</p>
</body>
</html>
HTML
복사