Toggle navigation
Toggle navigation
This project
Loading...
Sign in
민재기
/
web_service
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-16 11:25:54 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
d393e8c8317297dd0f76dd4ea59951eaf3e216ca
d393e8c8
1 parent
0d550f40
170316 practice.
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
49 additions
and
0 deletions
ex03.html
ex03.html
0 → 100644
View file @
d393e8c
<!DOCTYPE html>
<html
lang=
"ko"
>
<meta
charset=
"utf-8"
>
<body>
<table
border=
"1"
>
<thead>
<tr>
<th>
분류
</th>
<th>
제품명
</th>
<th>
단가
</th>
<th>
수량
</th>
<th>
금액
</th>
</tr>
</thead>
<tbody>
<tr>
<td
rowspan=
"3"
>
공산품
</td>
<td>
iPhone
</td>
<td>
900,000
</td>
<td>
2
</td>
<td>
1,800,000
</td>
</tr>
<tr>
<td>
LED TV
</td>
<td>
3,000,000
</td>
<td>
3
</td>
<td>
9,000,000
</td>
</tr>
<tr>
<td
colspan=
"3"
style=
"text-align:center"
>
소계
</td>
<td>
10,800,000
</td>
</tr>
<tr>
<td
rowspan=
"2"
>
농산품
</td>
<td>
인삼
</td>
<td>
10,000
</td>
<td>
200
</td>
<td>
2,000,000
</td>
</tr>
<tr>
<td
colspan=
"3"
style=
"text-align:center"
>
소계
</td>
<td>
2,000,000
</td>
</tr>
<td
colspan=
"4"
style=
"text-align:center"
>
합계
</td>
<td>
12,800,000
</td>
</tbody>
</table>
<
/body
</html>
Please
register
or
login
to post a comment