본문 바로가기

폭넓은 영역/웹페이지만들기_초보

웹개발종합반1-5 CSS기초

명찰을 다는 것과 명찰을 지칭하는 것이 중요함 -> 꾸며주는 것의 핵심

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인 페이지</title>
    <style>
        .mytitle {
            color:red;
            font-size:10px;
        }
    </style>
</head>
<body>
    <h1 class ="mytitle">로그인 페이지</h1>
        <p>ID: <input type="text" /></p>
        <p>PW: <input type="text" /></p>
        <button> 로그인하기 </button>

</body>
</html>