반응형
Q>
테이블을 생성하는 HTML 문서를 작성하라.
A>
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<table border="1">
<tr>
<th>Column1</th>
<th>Column2</th>
<th>Column3</th>
</tr>
<tr>
<td rowspan="2">Row 1 Cell 1</td>
<td>Row 1 Cell 2</td>
<td>Row 1 Cell 3</td>
</tr>
<tr>
<td>Row 2 Cell 2</td>
<td>Row 3 Cell 3</td>
</tr>
<tr>
<td colspan="3">Row 3 Cell 1</td>
</tr>
</table>
</body>
</html>
table
https://developer.mozilla.org/ko/docs/Web/HTML/Element/table
R>
|
반응형
'Python_WEB > HTML' 카테고리의 다른 글
[Ch2]HTML5 기본 요소 - 연습문제 3 (0) | 2020.11.02 |
---|---|
[Ch2]HTML5 기본 요소 - 연습문제 2 (0) | 2020.11.01 |
[Ch1]기초사항 - 연습문제 (0) | 2020.11.01 |
[Font]Basic types of typefaces(서체의 기본 종류) (0) | 2020.07.06 |
[HTML]Reactive WEB (0) | 2020.03.18 |