CSS 08 타입 선택자 사용하기

프론트엔드/CSS|2021. 3. 20. 07:30
태그선택자

초보개발자의 성장블로그

특징

노잼이다..ㅠㅠ

<!DOCTYPE html>
<html lang="en">
<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>태그선택자</title>
    <style>
        h2{
        color:#ff0000;
        font-family:"맑은 고딕";
        font-size:40px;
        }
        h3{
        color:#0000ff;
        font-size:16px;
        font-style:oblique;
        text-decoration:underline;
        }
        p{
        color:#444444;
        font-family:"돋움";
        font-size:30px;
        line-height:150%;
        }
    </style>
</head>
<body>
  <h2>초보개발자의 성장블로그</h2>
  <h3>특징</h3>
  <p> 노잼이다..ㅠㅠ</p>    
</body>
</html>

댓글()
구독