Showing
5 changed files
with
154 additions
and
0 deletions
.idea/modules.xml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<project version="4"> | ||
| 3 | + <component name="ProjectModuleManager"> | ||
| 4 | + <modules> | ||
| 5 | + <module fileurl="file://$PROJECT_DIR$/.idea/practice2.iml" filepath="$PROJECT_DIR$/.idea/practice2.iml" /> | ||
| 6 | + </modules> | ||
| 7 | + </component> | ||
| 8 | +</project> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/practice2.iml
0 → 100644
| 1 | +<?xml version="1.0" encoding="UTF-8"?> | ||
| 2 | +<module type="WEB_MODULE" version="4"> | ||
| 3 | + <component name="NewModuleRootManager"> | ||
| 4 | + <content url="file://$MODULE_DIR$"> | ||
| 5 | + <excludeFolder url="file://$MODULE_DIR$/.tmp" /> | ||
| 6 | + <excludeFolder url="file://$MODULE_DIR$/temp" /> | ||
| 7 | + <excludeFolder url="file://$MODULE_DIR$/tmp" /> | ||
| 8 | + </content> | ||
| 9 | + <orderEntry type="inheritedJdk" /> | ||
| 10 | + <orderEntry type="sourceFolder" forTests="false" /> | ||
| 11 | + </component> | ||
| 12 | +</module> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
.idea/workspace.xml
0 → 100644
This diff is collapsed. Click to expand it.
practice3.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | +<head> | ||
| 4 | + <meta charset="UTF-8"> | ||
| 5 | +</head> | ||
| 6 | +<body> | ||
| 7 | +<table border="1"> | ||
| 8 | + <caption>practice3</caption> | ||
| 9 | + <thread> | ||
| 10 | + <tr> | ||
| 11 | + <th>분류</th> | ||
| 12 | + <th>제품명</th> | ||
| 13 | + <th>단가</th> | ||
| 14 | + <th>수량</th> | ||
| 15 | + <th>금액</th> | ||
| 16 | + </tr> | ||
| 17 | + </thread> | ||
| 18 | + <tbody> | ||
| 19 | + <tr> | ||
| 20 | + <td rowspan="4">공산품</td> | ||
| 21 | + <tr align="right"> | ||
| 22 | + <td align="left">iPhone</td> | ||
| 23 | + <td>900,000</td> | ||
| 24 | + <td>2</td> | ||
| 25 | + <td>1,800,000</td> | ||
| 26 | + </tr> | ||
| 27 | + <tr align="right"> | ||
| 28 | + <td>LED TV</td> | ||
| 29 | + <td>3,000,000</td> | ||
| 30 | + <td>3</td> | ||
| 31 | + <td>9,000,000</td> | ||
| 32 | + </tr> | ||
| 33 | + <tr align="right"> | ||
| 34 | + <td colspan = "3"; align="center">소계</td> | ||
| 35 | + <td>10,800,000</td> | ||
| 36 | + </tr> | ||
| 37 | + </tr> | ||
| 38 | + <tr> | ||
| 39 | + <td rowspan="3">농산품</td> | ||
| 40 | + <tr align="right"> | ||
| 41 | + <td align="left">인삼</td> | ||
| 42 | + <td>10,000</td> | ||
| 43 | + <td>200</td> | ||
| 44 | + <td>2,000,000</td> | ||
| 45 | + </tr> | ||
| 46 | + <tr align="right"> | ||
| 47 | + <td colspan = "3"; align="center">소계</td> | ||
| 48 | + <td>2,000,000</td> | ||
| 49 | + </tr> | ||
| 50 | + </tr> | ||
| 51 | + <tr> | ||
| 52 | + <td colspan="4"; align ="center">합계</td> | ||
| 53 | + <td>12,800,000</td> | ||
| 54 | + </tr> | ||
| 55 | + </tbody> | ||
| 56 | +</table> | ||
| 57 | +</body> | ||
| 58 | +</html> | ||
| ... | \ No newline at end of file | ... | \ No newline at end of file |
practice4.html
0 → 100644
| 1 | +<!DOCTYPE html> | ||
| 2 | +<html lang="ko"> | ||
| 3 | + <head> | ||
| 4 | + <meta charset="UTF-8"> | ||
| 5 | + </head> | ||
| 6 | + <body> | ||
| 7 | + <form action="#" value="회원가입" method="post"> | ||
| 8 | + <table border="1"> | ||
| 9 | + <thread> | ||
| 10 | + </thread> | ||
| 11 | + <tbody> | ||
| 12 | + <tr> | ||
| 13 | + <th>아이디</th> | ||
| 14 | + <td> | ||
| 15 | + <input type="text" name="id" size="10"/> | ||
| 16 | + </td> | ||
| 17 | + <td colspan="3"> | ||
| 18 | + <input type="button" name="check_id" value="중복조회"/> | ||
| 19 | + </td> | ||
| 20 | + </tr> | ||
| 21 | + <tr> | ||
| 22 | + <th>비밀번호</th> | ||
| 23 | + <td> | ||
| 24 | + <input type="password" name="password" size="10"/> | ||
| 25 | + </td> | ||
| 26 | + <th>확인</th> | ||
| 27 | + <td> | ||
| 28 | + <input type="password" name="check_password" size="10"/> | ||
| 29 | + </td> | ||
| 30 | + </tr> | ||
| 31 | + <tr> | ||
| 32 | + <th>이름</th> | ||
| 33 | + <td colspan="3"> | ||
| 34 | + <input type="text" name="name" size="10"/> | ||
| 35 | + </td> | ||
| 36 | + </tr> | ||
| 37 | + <tr> | ||
| 38 | + <th>이메일</th> | ||
| 39 | + <td colspan="3"> | ||
| 40 | + <input type="text" name="e-mail" size="20"/> | ||
| 41 | + </td> | ||
| 42 | + </tr> | ||
| 43 | + <tr> | ||
| 44 | + <th>성별</th> | ||
| 45 | + <td colspan="3"> | ||
| 46 | + <input type="radio" name="sex" value="m"/>남 | ||
| 47 | + <input type="radio" name="sex" value="f"/>여 | ||
| 48 | + </td> | ||
| 49 | + </tr> | ||
| 50 | + <tr> | ||
| 51 | + <th>지역</th> | ||
| 52 | + <td colspan="3"> | ||
| 53 | + <select name="location"> | ||
| 54 | + <option value="seoul">서울</option> | ||
| 55 | + <option value="busan">부산</option> | ||
| 56 | + <option value="daegu">대구</option> | ||
| 57 | + <option value="daejeon">대전</option> | ||
| 58 | + <option value="etc">기타</option> | ||
| 59 | + </select> | ||
| 60 | + </td> | ||
| 61 | + </tr> | ||
| 62 | + <tr> | ||
| 63 | + <td colspan="4"> | ||
| 64 | + <input type="checkbox" name="agree"/>약관에 동의합니다. | ||
| 65 | + </td> | ||
| 66 | + </tr> | ||
| 67 | + <tr> | ||
| 68 | + <td colspan="4"> | ||
| 69 | + <input type="submit"/> | ||
| 70 | + </td> | ||
| 71 | + </tr> | ||
| 72 | + </tbody> | ||
| 73 | + </table> | ||
| 74 | + </form> | ||
| 75 | + </body> | ||
| 76 | +</html> |
-
Please register or login to post a comment