-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSupplies.html
More file actions
151 lines (139 loc) · 3.67 KB
/
Copy pathSupplies.html
File metadata and controls
151 lines (139 loc) · 3.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta name="description" content="" />
<meta name="author" content="" />
<title>Landing Page - Start Bootstrap Theme</title>
<!-- Favicon-->
<link rel="icon" type="image/x-icon" href="assets/favicon.ico" />
<!-- Bootstrap-->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.5.0/font/bootstrap-icons.css" rel="stylesheet" type="text/css" />
<!-- Bootstrap core JS-->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js"></script>
<!-- Google fonts-->
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@48,400,0,0" />
<!-- Core theme CSS (includes Bootstrap)-->
<link href="css/styles.css" rel="stylesheet" />
<title>여행 준비물 안내</title>
</head>
<style>
table {
width: 50%;
margin: auto;
border-collapse: collapse;
}
th,
td {
border: 1px solid black;
padding: 4px;
text-align: center;
}
td {
width: 70%;
}
th {
background-color: #f2f2f2;
font-size: 20px;
}
h2 {
text-align: center;
margin: 20px 0;
}
.contianer {
display: flex;
justify-content: flex-end;
margin-top: 15px;
margin-right: 25%;
}
</style>
</head>
<body>
<h2>여행 준비물</h2>
<table>
<thead>
<tr>
<th>항목</th>
<th>내용</th>
</tr>
</thead>
<tbody>
<tr>
<th rowspan="4">필수 준비물</th>
<td>여권 & 사본</td>
</tr>
<tr>
<td>항공권 E-Ticket</td>
</tr>
<tr>
<td>백신 증명서(영문)</td>
</tr>
<tr>
<td>환전 화폐</td>
</tr>
<tr>
</div>
<th rowspan="10">의류</th>
<td>겉옷</td>
</tr>
<tr>
<td>바람막이</td>
</tr>
<tr>
<td>맨투맨</td>
</tr>
<tr>
<td>양말</td>
</tr>
<tr>
<td>잠옷</td>
</tr>
<tr>
<td>수영복</td>
</tr>
<tr>
<td>수건</td>
</tr>
<tr>
<td>모자</td>
</tr>
<tr>
<td>운동화</td>
</tr>
<tr>
<td>슬리퍼</td>
</tr>
<tr>
<th rowspan="8">기타</th>
<td>세면도구</td>
</tr>
<tr>
<td>상비약</td>
</tr>
<tr>
<td>선크림</td>
</tr>
<tr>
<td>선글라스</td>
</tr>
<tr>
<td>비오킬 (벌레 퇴치제)</td>
</tr>
<tr>
<td>이어폰</td>
</tr>
<tr>
<td>카메라</td>
</tr>
<tr>
<td>목베게</td>
</tr>
</tbody>
</table>
<div class="contianer">
<a href="ProSup.php" class="btn btn-primary me-md-2" type="button">확인했습니다.</a>
</div>
</body>
</html>