이세구

add practice3, 4

<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/practice2.iml" filepath="$PROJECT_DIR$/.idea/practice2.iml" />
</modules>
</component>
</project>
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
<excludeFolder url="file://$MODULE_DIR$/temp" />
<excludeFolder url="file://$MODULE_DIR$/tmp" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>
\ No newline at end of file
This diff is collapsed. Click to expand it.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
</head>
<body>
<table border="1">
<caption>practice3</caption>
<thread>
<tr>
<th>분류</th>
<th>제품명</th>
<th>단가</th>
<th>수량</th>
<th>금액</th>
</tr>
</thread>
<tbody>
<tr>
<td rowspan="4">공산품</td>
<tr align="right">
<td align="left">iPhone</td>
<td>900,000</td>
<td>2</td>
<td>1,800,000</td>
</tr>
<tr align="right">
<td>LED TV</td>
<td>3,000,000</td>
<td>3</td>
<td>9,000,000</td>
</tr>
<tr align="right">
<td colspan = "3"; align="center">소계</td>
<td>10,800,000</td>
</tr>
</tr>
<tr>
<td rowspan="3">농산품</td>
<tr align="right">
<td align="left">인삼</td>
<td>10,000</td>
<td>200</td>
<td>2,000,000</td>
</tr>
<tr align="right">
<td colspan = "3"; align="center">소계</td>
<td>2,000,000</td>
</tr>
</tr>
<tr>
<td colspan="4"; align ="center">합계</td>
<td>12,800,000</td>
</tr>
</tbody>
</table>
</body>
</html>
\ No newline at end of file
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
</head>
<body>
<form action="#" value="회원가입" method="post">
<table border="1">
<thread>
</thread>
<tbody>
<tr>
<th>아이디</th>
<td>
<input type="text" name="id" size="10"/>
</td>
<td colspan="3">
<input type="button" name="check_id" value="중복조회"/>
</td>
</tr>
<tr>
<th>비밀번호</th>
<td>
<input type="password" name="password" size="10"/>
</td>
<th>확인</th>
<td>
<input type="password" name="check_password" size="10"/>
</td>
</tr>
<tr>
<th>이름</th>
<td colspan="3">
<input type="text" name="name" size="10"/>
</td>
</tr>
<tr>
<th>이메일</th>
<td colspan="3">
<input type="text" name="e-mail" size="20"/>
</td>
</tr>
<tr>
<th>성별</th>
<td colspan="3">
<input type="radio" name="sex" value="m"/>
<input type="radio" name="sex" value="f"/>
</td>
</tr>
<tr>
<th>지역</th>
<td colspan="3">
<select name="location">
<option value="seoul">서울</option>
<option value="busan">부산</option>
<option value="daegu">대구</option>
<option value="daejeon">대전</option>
<option value="etc">기타</option>
</select>
</td>
</tr>
<tr>
<td colspan="4">
<input type="checkbox" name="agree"/>약관에 동의합니다.
</td>
</tr>
<tr>
<td colspan="4">
<input type="submit"/>
</td>
</tr>
</tbody>
</table>
</form>
</body>
</html>