관리 메뉴

moozi

join.html 본문

TIS_2016/HTML5_3기

join.html

moozi 2016. 7. 15. 10:23

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>회원가입</title>

</head>

<body>

    <h1>회원가입</h1>

    <form action="join.php" method="post">

    ID <input type="text" name="id" required><br/>

    PW <input type="password" name="password" required><br/>

    이름 <input type="text" name="name" required><br/>

    성별 <input type="radio" name="gender" value="남">남

        <input type="radio" name="gender" value="여">여<br/>

    이메일 <input type="email" name="email" required><br/>

    주소 <input type="text" name="address"><br/>

    취미 <input type="checkbox" name="hobby1" value="h1">운동

    <input type="checkbox" name="hobby2" value="h2">독서

    <input type="checkbox" name="hobby3" value="h3">게임

    <input type="checkbox" name="hobby4" value="h4">영화감상<br/>

    직업 <select name="job">

            <option value="j1">공무원</option>

            <option value="j2">직장인</option>

            <option value="j3">학생</option>

            <option value="j4">기타</option>

        </select><br/>

    인사말 <br/>

    <textarea name="comment" cols="50" rows="5"></textarea><br/>

    사진 <input type="file" name="picture"> <br/>

    <input type="submit" value="등록">

    <input type="reset" value="취소">    

    </form>

</body>

</html>

'TIS_2016 > HTML5_3기' 카테고리의 다른 글

7/18 css03.html  (0) 2016.07.18
html연습문제02  (0) 2016.07.15
7/15 수업파일  (0) 2016.07.15
7/14 수업시간 작성 파일  (0) 2016.07.14
html연습문제01  (0) 2016.07.14
Comments