-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
87 lines (74 loc) · 3.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Welcome to the most extraordinary hotel website">
<meta name="keywords" content="Hotel,Pakistani Hotel,Fancy Marquee">
<link rel="stylesheet" href="./css/style.css">
<link rel="stylesheet" media="screen and (max-width:768px)" href="./css/mobile.css">
<script src="https://kit.fontawesome.com/b8b325b13d.js" crossorigin="anonymous"></script>
<title>Fancy Marquee</title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a href="index.html"><span class="text-primary">Fancy</span> Marquee</a></h1>
<ul>
<li><a class="current" href="index.html">Home</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</div>
</nav>
<div id="showcase">
<div class="container">
<div class="showcase-content">
<h1><span class="text-primary">Fancy</span> Marquee</h1>
<p class="lead">Enjoy your day with us </p>
<a class="btn" href="About.html">About our Hotel</a>
</div>
</div>
</div>
</header>
<section id="home-info" class="bg-dark">
<div class="info-img"></div>
<div class="info-content">
<h1><span class="text-primary">The History</span> of Hotel</h1>
<p>Welcome to Fancy Marque, where luxury meets indulgence in every
detail. Nestled amidst breathtaking landscapes, our hotel stands as a
beacon of opulence and refinement. From the moment you step through
our grand entrance, you'll be enveloped in an ambiance of
sophistication and unparalleled hospitality. Whether you're seeking
relaxation by our pristine poolside oasis or rejuvenation at our
world-class spa. Experience the epitome of luxury hospitality and
create unforgettable memories with us at Fancy Marque, where every
stay is an extraordinary journey.
</p>
<a href="About.html" class="btn btn-light">Read more </a>
</div>
</section>
<section id="features">
<div class="box bg-light">
<i class="fas fa-hotel fa-3x"></i>
<h3>Great Location</h3>
<p>It offers a great location with beautiful views. </p>
</div>
<div class="box bg-primary">
<i class="fas fa-utensils fa-3x"></i>
<h3>Free Meals</h3>
<p>Lots of saving offers go well here almost everyday.</p>
</div>
<div class="box bg-light">
<i class="fas fa-dumbbell fa-3x"></i>
<h3>Fitness Room</h3>
<p>Beautiful fitness rooms to be fit and hit the gym</p>
</div>
</section>
<div class="clr"></div>
<footer class="main-footer">
<p>Fancy Marquee © 2024 | All Rights Reserved By Daoud Hussain</p>
</footer>
</body>
</html>