프론트엔드/HTML
HTML 23 <input type="text"> 태그로 텍스트 입력 창 만들기
스펀지연구소
2021. 3. 19. 11:36
<!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>Document</title>
</head>
<body>
<form>
이름 : <input type="text"><br>
나이 : <input type="text">
</form>
</body>
</html>