-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhotel_index.html
55 lines (47 loc) · 1.46 KB
/
hotel_index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
<link rel="stylesheet" href="css/all.css">
<title>Hotel_index</title>
</head>
<body>
<div class="container">
<div class="info_box">
<a href="hotel_index.html" class="logo"><img src="img/logo.svg" alt=""></a>
<div class="info">
<p class="title"><strong>好室旅店。HOUSE HOTEL</strong></p>
<p>台北市大安區忠孝東路四段255號</p>
<p>02-25754366</p>
<p>[email protected]</p>
</div>
</div>
<!-- info_box end -->
<div class="room_box">
<div class="room_box_center">
<div class="room_1">
<a href="hotel_price.html">Single Room</a>
</div>
<div class="room_2">
<a href="hotel_price.html">Double Room</a>
</div>
<div class="room_3">
<a href="hotel_price.html">Twin Room</a>
</div>
<div class="room_4">
<a href="hotel_price.html">Deluxe Single Room</a>
</div>
<div class="room_5">
<a href="hotel_price.html">Deluxe Double Room</a>
</div>
<div class="room_6">
<a href="hotel_price.html">Deluxe Twin Room</a>
</div>
</div>
</div>
<!-- room_box end -->
</div>
</body>
</html>