Toggle navigation
Toggle navigation
This project
Loading...
Sign in
서현석
/
WebServicePrograming
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
서현석
2017-03-23 13:59:30 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d363d642ad1510e1de8a9f52c036fc2529d38272
d363d642
1 parent
0ef29f80
html exercise03
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
63 additions
and
0 deletions
html_ex03.html
html_ex03.html
0 → 100644
View file @
d363d64
<!DOCTYPE html>
<html
lang=
"ko"
>
<head>
<meta
charset=
"utf-8"
>
</head>
<body>
<table
border =
"1"
>
<caption>
홈런순위
</caption>
<thead>
<tr>
<th>
분류
</th>
<th>
제품명
</th>
<th>
단가
</th>
<th>
수량
</th>
<th>
금액
</th>
</tr>
</thead>
<tbody>
<tr>
<th
rowspan =
"3"
>
공산품
</th>
<td>
iPhone
</td>
<td>
900,000
</td>
<td>
2
</td>
<td>
1,800,000
</td>
<tr>
<td>
LED TV
</td>
<td>
3,000,000
</td>
<td>
3
</td>
<td>
9,000,000
</td>
</tr>
<th
colspan =
"3"
>
소계
</th>
<td>
10,800,000
</td>
</tr>
<tr>
<th
rowspan =
"2"
>
농산품
</th>
<td>
인삼
</td>
<td>
10,000
</td>
<td>
200
</td>
<td>
2,000,000
</td>
<tr>
<th
colspan =
"3"
>
소계
</th>
<th>
2,000,000
</th>
</tr>
</tbody>
<tfoot>
<tr>
<th
colspan=
"4"
>
합계
</th>
<th>
12,800,000
</th>
</tfoot>
</table>
</body>
</html>
Please
register
or
login
to post a comment