Notice
Recent Posts
Recent Comments
Link
«   2025/06   »
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
Archives
Today
Total
관리 메뉴

Everything has an expiration date

HTML 20231128 [프로그램 소스] - Test014 본문

[HTML]/Program source (HTML)

HTML 20231128 [프로그램 소스] - Test014

Jelly-fish 2023. 11. 28. 13:21

 

WebApp01

 

Test014.html

 

Test014.html

 

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test014.html</title>
</head>
<body>

<div>
	<h1>테이블의 셀 병합 실습</h1>
	<hr>
</div>

<div>
	<table border="2" background="images/img_00.jpg" cellpadding="5" cellspacing="5">
	<tr>
		<td rowspan="6">&nbsp; a &nbsp;</td>
		<td colspan="2">&nbsp; b &nbsp;</td>
		<td colspan="2">&nbsp; c &nbsp;</td>
	</tr>
	<tr>
		<td rowspan="3">&nbsp; d &nbsp;</td>
		<td>&nbsp; e &nbsp;</td>
		<td rowspan="2">&nbsp; f &nbsp;</td>
		<td>&nbsp; g &nbsp;</td>
	</tr>
	<tr>
		<td>&nbsp; h &nbsp;</td>
		<td>&nbsp; i &nbsp;</td>
	</tr>
	<tr>
		<td>&nbsp; j &nbsp;</td>
		<td>&nbsp; k &nbsp;</td>
		<td>&nbsp; l &nbsp;</td>
	</tr>
	<tr>
		<td colspan="4">&nbsp; m &nbsp;</td>
	</tr>
	<tr>
		<td colspan="2">&nbsp; n &nbsp;</td>
		<td>&nbsp; o &nbsp;</td>
		<td>&nbsp; p &nbsp;</td>
	</tr>
	
	
	</table>
</div>


</body>
</html>