Search

0104_class1

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