-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooking4.html
More file actions
50 lines (50 loc) · 1.8 KB
/
booking4.html
File metadata and controls
50 lines (50 loc) · 1.8 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>웹프로젝트</title>
<link rel="stylesheet" href="css/booking4.css">
<script type="text/javascript" src="js/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="js/booking4.js"></script>
</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.html">q&a</a></li>
</ul>
</header>
<section>
<div id="firstarticle">
<h2>예약하기 <span id="smalltext">(booking)</span></h2>
<img src="images/booking4_picture.gif" style="margin-bottom:30px">
</div>
<div id="secondarticle">
<table cellspacing="0">
<tr>
<td style="font-size:50px">예약이 완료되었습니다.</td>
</tr>
<tr>
<td><input type="button" onclick="firstbookingpage();" value="확인" class="buttontype"></td>
</tr>
</table>
</div>
</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>