-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotice.html
More file actions
106 lines (106 loc) · 4 KB
/
notice.html
File metadata and controls
106 lines (106 loc) · 4 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>웹프로젝트</title>
<link rel="stylesheet" href="css/notice.css">
</head>
<body>
<div id="container">
<header>
<a href="main_display.html"><img id="logotype" src="images/main_logo.JPG" alt="메인로고"></a>
<ul>
<li><a href="reason.html">reason</a></li>
<li><a href="notice.html">notice</a></li>
<li><a href="rooms.html">rooms</a></li>
<li><a href="booking.html">booking</a></li>
<li><a href="check booking.html">check booking</a></li>
<li><a href="q&a.php">q&a</a></li>
</ul>
</header>
<section>
<article class="firstarticle">
<h1>reservation</h1>
<ul>
<li>
<img src="images/notice_picture1.JPG" alt="예약 하기">
<h3>예약 하기</h3>
<p>
예약은 홈페이지 상단의 “Booking”메뉴에서 진행 가능하며,<br>
테마, 날짜, 시간, 인원을 지정 후
예약 정보 입력 및 예약비(게임비의 50%)를 결제하시면 예약이 완료됩니다.
</p>
</li>
<li>
<img src="images/notice_picture2.JPG" alt="예약 수정">
<h3>예약 수정</h3>
<p>
예약 수정은 전화(010-5157-9214) 혹은 Q&A 게시판으로 문의하시면 가능하며,<br>
기존 예약시간 24시간 이전에만 가능합니다.<br>
(단, 인원수 변동은 언제나 가능하오니 내방 시 말씀해 주십시오.)
</p>
</li>
<li>
<img src="images/notice_picture3.JPG" alt="예약 취소">
<h3>예약 취소</h3>
<p>
예약 취소는 “Booking”메뉴에서 진행 가능하며,
24시간 이전에만 취소 및 환불 가능합니다.<br>
(**당일 예약은 취소 및 환불 불가)
</p>
</li>
</ul>
</article>
<article class="secondarticle">
<h1>price</h1>
<table cellspacing="0">
<tr>
<th>인원수</th>
<th colspan="2">인당</th>
<th>합계</th>
</tr>
<tr>
<td>1</td>
<td colspan="2">24,000</td>
<td>24,000</td>
</tr>
<tr>
<td>2</td>
<td colspan="2">22,000</td>
<td>44,000</td>
</tr>
<tr>
<td>3</td>
<td colspan="2">20,000</td>
<td>60,000</td>
</tr>
<tr>
<td>4</td>
<td colspan="2">18,000</td>
<td>72,000</td>
</tr>
<tr>
<td>5</td>
<td colspan="2">16,000</td>
<td>80,000</td>
</tr>
<tr>
<td>6</td>
<td colspan="2">14,000</td>
<td>84,000</td>
</tr>
</table>
</article>
</section>
<footer>
<ul>
<li>주소 : 공주대학교 천안공과대학 8층</li>
<li>대표 : 손원주</li>
<li>전화번호 : 010-5157-9214</li>
<li>이메일 : sonwonjoo@naver.com</li>
<li>Copyright ⓒ REASON All Right Reserved</li>
</ul>
</footer>
</div>
</body>
</html>