본문 바로가기
스파르타 코딩 웹개발 종합반/1주차

1-4 로그인 페이지 만들기

by 율✌️ 2022. 5. 11.

코드 : 

<!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>

 

결과: