문의게시판 기본양식
<!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>
<style>
form{
text-align: left;
}
</style>
</head>
<body>
<h2>문의 게시판 글쓰기</h2>
<form>
<table>
<tr>
<th>이름</th>
<td><input type="text"></td>
</tr>
<tr>
<th>비밀번호</th>
<td><input type="password"></td>
</tr>
<tr>
<th>이메일</th>
<td><input type="text">@<select><option>선택</option><option>naver.com</option></select></td>
</tr>
<tr>
<th>내용</th>
<td><textarea rows="10" cols="40"></textarea></td>
</tr>
<tr>
<th>파일선택</th>
<td><input type="file"></td>
</tr>
<tr>
<th></th>
<td>5M 이하의 파일만 첨부 가능합니다.</td>
</tr>
<tr>
<th><button>확인</button></th>
</tr>
</table>
</form>
</body>
</html>
Author And Source
이 문제에 관하여(문의게시판 기본양식), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@kdw0247/문의게시판-기본양식저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)