본문 바로가기

Css

css 기본1

<!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>CSS</title>
    <style>
        h2{text-align: center; font-size: 50px; color: deepskyblue; }
        p{text-align:  center; font-size: 20px;}

    </style>
</head>
<body>
    <h2>CSS</h2>
    <p>웹 페이지의 특정 요소 또는 요소 그룹에 적용할 스타일 그룹을 지정하는 규칙을 정의하는 언어</p>
</body>
</html>

 

CSS

웹 페이지의 특정 요소 또는 요소 그룹에 적용할 스타일 그룹을 지정하는 규칙을 정의하는 언어

'Css' 카테고리의 다른 글

Css의시작  (0) 2022.11.10