-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathindex.html
90 lines (80 loc) · 2.64 KB
/
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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Suites and Rooms</title>
<link rel="stylesheet" href="index.css">
</head>
<body>
<!-- for Luxury master suit -->
<div class="Luxury_master">
<div class="master_suit_txt">
<h3>Luxury Master Suite.</h3>
<ul>
<li>
Oversees a river with swans
</li>
<li>
Spacious walk-in closet
</li>
<li>
Complimentry mini bar
</li>
<li>
Size : 110 square feet
</li>
Rate : $1,500/night
</ul>
</div>
<img class="master_suit_pic" src="/Team-Gold-Design-2\img\master_suit.jpg" alt="">
</div>
<button class="available"><a href="#"> CHECK AVAILABILITY</a></button>
<!-- for Luxury master suit -->
<div class="Luxury_master">
<div class="master_suit_txt">
<h3>Luxury Junior Suite.
</h3>
<ul>
<li>
Oversees a garden with birds
</li>
<li>
Spacious working area
</li>
<li>
Complimentry mini bar
</li>
<li>
Size : 90 square feet
</li>
Rate : $1,000/night
</ul>
</div>
<img class="master_suit_pic" src="/Team-Gold-Design-2\img\master.jpg" alt="">
</div>
<button class="available"><a href="#"> CHECK AVAILABILITY</a></button>
<div class="master_suit_txt">
<h3>Double Cozy Rooms.
</h3>
<ul>
<li>
Beautiful night view of the city
</li>
<li>
Spacious working area
</li>
<li>
Complimentry mini bar
</li>
<li>
Size : 65 square feet
</li>
Rate : $850/night
</ul>
</div>
<img class="master_suit_pic" src="Team-Gold-Design-2\img\doubel.jpg" alt="">
</div>
<button class="available"><a href="#"> CHECK AVAILABILITY</a></button>
</body>
</html>