웹개발/HTML || CSS

HTML 스타일링

철없는민물장어 2022. 9. 25. 23:37
728x90
<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Document</title>
</head>
<body>
        <img src="lion.png" style="width:100px; display:block;
        margin-left: auto;margin-right: auto;">
        <h3 style="text-align: center;">YEOM</h3>
        <p style="text-align: center;">
            <span style="color: red;">글자를 감쌀 의미없는 태그</span>
            <strong>굵게하기</strong>배우기
        </p>
        <p style="text-align: left;margin-left:30px;">
            <span style="color: red; font-family:궁서체;">난</span> 여기다가 본문을 적고싶은데?
        </p>


</body>
</html>

style="

width: 100px;

display:block;

margin-left:auto;

margin-right:auto;

text-align: center;

font-size: 16px;

font-family: "궁서체";

color: "red";

뭐 요정도를 배웠다

728x90