Toggle navigation
Toggle navigation
This project
Loading...
Sign in
성준영
/
webservice-practices
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:13:13 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
17102b67edc429318e9e5d5cd82dd6e593c21b72
17102b67
1 parent
8d44692c
practice_3 테이블 만들기
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
54 additions
and
0 deletions
practice_3/index.html
practice_3/index.html
0 → 100644
View file @
17102b6
<!DOCTYPE html>
<html
lang=
"en"
>
<head>
<meta
charset=
"UTF-8"
>
<title>
테이블
</title>
</head>
<body>
<table
border=
"1px"
>
<thead>
<tr>
<th>
분류
</th>
<th>
제품명
</th>
<th>
단가
</th>
<th>
수량
</th>
<th>
금액
</th>
</tr>
</thead>
<tbody>
<tr>
<th
rowspan=
"3"
>
공산품
</th>
<th>
iPone
</th>
<th>
900,000
</th>
<th>
2
</th>
<th>
1,800,000
</th>
</tr>
<tr>
<th>
LED TV
</th>
<th>
3,000,000
</th>
<th>
3
</th>
<th>
9,000,000
</th>
</tr>
<tr>
<th
colspan=
"3"
>
소계
</th>
<th>
10,800,000
</th>
</tr>
<tr>
<th
rowspan=
"2"
>
농산품
</th>
<th>
인삼
</th>
<th>
10,000
</th>
<th>
200
</th>
<th>
2,000,000
</th>
</tr>
<tr>
<th
colspan=
"3"
>
소계
</th>
<th>
2,000,000
</th>
</tr>
<tr>
<th
colspan=
"4"
>
합계
</th>
<th>
12,800,000
</th>
</tr>
</tbody>
</table>
</body>
</html>
\ No newline at end of file
Please
register
or
login
to post a comment