-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathorderlist.html
More file actions
49 lines (47 loc) · 1.19 KB
/
orderlist.html
File metadata and controls
49 lines (47 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> Order List </title>
<style>
h1 {
text-align: center;
}
table {
margin-left: auto;
margin-right: auto;
}
div {
text-align: center;
margin-bottom: 50px;
}
</style>
</head>
<body>
<h1> Order List </h1>
<div>
<a href="./tennis.html"> go back </a>
</div>
<table style="border: 1px solid black;"> <!-- 열 제목 -->
<th> No </th>
<th> Product </th>
<th> Description </th>
<th> Price </th>
<th> Order Date </th>
<tr>
<td> No 1 </td>
<td> racket A </td>
<td> Description A </td>
<td> 1 $ </td>
<td> 1 day </td>
</tr>
<tr>
<td> No 2 </td>
<td> racket B </td>
<td> Description B </td>
<td> 2 $ </td>
<td> 2 day </td>
</tr>
</table>
</body>
</html>