HTML 로 로그인 페이지 만들기

박영준·2023년 5월 23일
0

Javascript

목록 보기
2/11
post-custom-banner
<!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>
</head>
<body>
    <h1>로그인 페이지</h1>
    <p>ID: <input type="text"/></p>     <!--p 태그로 문단 구분을 해주지 않으면, ID PW 블록이 한 줄로 나란히 나와버림-->
    <p>PW: <input type="text"/></p>
    <button>로그인하기</button>
</body>
</html>

profile
개발자로 거듭나기!
post-custom-banner

0개의 댓글