-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
55 lines (54 loc) · 2.19 KB
/
about.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.0">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="mobile.css">
<title>Hotel Website|About</title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a href="index.html">SHANGRI-LA HOTEL</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a class="current" href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section id="about-info" class="bg-light py-3">
<div class="container">
<div class="info-left">
<h1 class="l-heading"><span class="text-primary">About</span> Hotel SHANGRI-LA</h1>
<p>Shangri-La Hotels are five-star luxury hotels located in premier city addresses across Asia Pacific, North America, the Middle East, and Europe.</p>
<p>Enjoy world-class service amidst tranquil surroundings, coupled with inspirational design and transformative experiences in some of the world's finest urban addresses and resort destinations.</p>
</div>
<div class="info-right">
<img src="pexels-pixabay-258154.jpg" alt="hotel">
</div>
</div>
</section>
<div class="clr"></div>
<section id="testimonials" class="py-3">
<div class="container">
<h2 class="l-heading">What Our Guests Say</h2>
<div class="testimonial bg-primary">
<img src="img1.jpg" alt="Harry">
<p>They were very helpful and did not hesitate for a second to help out the guest when needed. Thanks a lot team!</p>
</div>
<div class="testimonial bg-primary">
<img src="img22.jpg" alt="Tisha">
<p>Neat and clean rooms 100% hygienic and secure rooms front desk person is co-operative recommend to others to visit this property.</p>
</div>
</div>
</section>
<footer id="main-footer">
<div class="clr"></div>
<p>Shangri-La International Hotel Management Ltd @2021. All Rights Reserved.</p>
</footer>
</body>
</html>