본문 바로가기

HTML, CSS

[HTML,CSS] Quiz : 간단한 로그인 페이지 만들어보기

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>
</head>
<body>
    <h1>로그인 페이지</h1>
    <p>ID: <input type="text"/></p>
    <p>PW: <input type="text"/></p>
    <button>로그인하기</button>
</body>
</html>

<hr>은 라인이 생기면서 줄바뀜, 단독으로 쓰는 듯?

</hr>로 끝내지 않고 그냥 <hr>만 쓰면 됨

<p>로 문단을 쓰고, </p>로 문단을 끝내면 다음 줄로 이동

 

'HTML, CSS' 카테고리의 다른 글