문의게시판 기본양식

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

좋은 웹페이지 즐겨찾기