#1-4까지 학습

 

<p>나는 문단이에요</p> 이것은 문단과 문단을 나누는 태그로써

<div>랑 비슷한 역할이다.

 

과제중에

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>로그인페이지</title>
</head>
<body>
    <h1>로그인 페이지</h1>
    <p>ID: <input type="text"/></p> =>이부분을 <p>말고 <span>이나 다른 태그를 주어 <div>로 나눌수도있다.
    <p>PW: <input type="text"/></p> =>input에서 타입을 text로 줘도되고 입력하지 않아도 되긴함.
    <button>로그인하기</button>
</body>
</html>
  

+ Recent posts