본문 바로가기
HTML

표에 사진 넣기

by chaechaekim 2019. 7. 24.
<!doctype html>
<html lang="en">
 <head>
<title>표 합치기 실습</title>
 </head>
 <body>
  <table border=1>
  <tr>
	<td colspan=2><img src=image/a.png width=200 height=200></td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
  </tr>
  <tr>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;</td>
	<td>&nbsp;</td>
	<td rowspan=2>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;</td>
  </tr>
  <tr>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp&nbsp;&nbsp;;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
  </tr>
  <tr>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
	<td>&nbsp;&nbsp;&nbsp;</td>
  </tr>
 </body>
</html>

'HTML' 카테고리의 다른 글

웹 폰트 사용하기  (0) 2019.07.29
내부 스타일 시트  (0) 2019.07.29
테이블 2  (0) 2019.07.24
표 합치기 실습  (0) 2019.07.24
테이블  (0) 2019.07.24

댓글