generated from microverseinc/readme-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
164 lines (144 loc) · 5.9 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Tangerine">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://kit.fontawesome.com/fcfd1041d5.js" crossorigin="anonymous">
</script>
<link rel="stylesheet" href="style.css">
<title>Hotel Website</title>
</head>
<body>
<header>
<nav class="topnav">
<ul>
<li> <a href="#"><i class="fa-brands fa-facebook-f"></i></a></li>
<li> <a href="#"><i class="fa-brands fa-twitter"></i></a></li>
<li> <a href="#">Log Out</a></li>
<li> <a href="#">My Page</a></li>
</ul>
</nav>
<div class="header">
<a href="index.html" class="logo">Wills Hotel</a>
<div class="navigation">
<div id="myNav" class="overlay mobile">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<div class="overlay-content">
<a href="index.html" class="menu-link">Home</a>
<a href="about.html" class="menu-link1">About Us</a>
<a href="rooms.html" class="menu-link2">Rooms</a>
</div>
</div>
<span onclick="openNav()" class="mobile">☰</span>
</div>
<nav class="nav">
<ul class="desktop">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About Us</a></li>
<li><a href="rooms.html">Rooms</a></li>
</ul>
</nav>
</div>
</header>
<!-- header Section -->
<section class="home">
<div class="hero">
<h1>"We Welcome You All At"</h1>
<h2>Wills A Luxury Hotel</h2>
<p>At Wills Hotel, we accommodate people from the whole corners of the wolrd.Everyday we prepare to receive
and facilitate people from different cultures both locally and all over the globe.
</p>
<div class="black">
<h1>Started in Dec 2000 ~ ToDate </h1>
<h4>By Professor Kidde George William</h4>
</div>
</div>
</section>
<section class="background">
<h1>Our Program</h1>
<hr>
<div class="Room-section">
<div class="Room">
<div class="price">
<i class="fa-solid fa-people-group"></i>
<h2>Breakfast</h2>
<p>We serve both local and international foods to our customers</p>
</div>
</div>
<div class="Room">
<div class="price">
<i class="fa-solid fa-champagne-glasses"></i>
<h2>Lunch</h2>
<p>We serve both local and international foods to our customers</p>
</div>
</div>
<div class="Room">
<div class="price">
<i class="fa-solid fa-house"></i>
<h2>Service</h2>
<p>We serve both local and international foods to our customers</p>
</div>
</div>
<div class="Room">
<div class="price">
<i class="fa-solid fa-champagne-glasses"></i>
<h2>Dinner</h2>
<p>We serve both local and international foods to our customers</p>
</div>
</div>
<div class="Room">
<div class="price">
<i class="fa-solid fa-money-bill-1"></i>
<h2>Western Union</h2>
<p>We serve both local and international foods to our customers</p>
</div>
</div>
</div>
<button type="button" class="morebtn"> See More Rooms</button>
<h2><a href="#" class="desktop-only">See More Rooms</a></h2>
</section>
<!-- Dynamic Section -->
<section class="services-section">
<div class="work">
<h1>Our Services</h1>
<hr>
</div>
<div class="services">
</div>
<button type="button" class="seeMore">see More</button>
</section>
<section class="sponser1">
<h1>Our Partners</h1>
<hr>
<div class="sponser-image">
<div class="flex">
<a href="#"><img src="https://promzzykoncepts.github.io/NFT-Conference/images/coinbase.svg"
alt="image"></a>
<a href="#"><img src="https://promzzykoncepts.github.io/NFT-Conference/images/binance-Logo.png"
alt="image"></a>
<a href="#"><img src="https://promzzykoncepts.github.io/NFT-Conference/images/Flow.png" alt="image"></a>
</div>
<div class="flex">
<a href="#"><img src="https://promzzykoncepts.github.io/NFT-Conference/images/moonpaymain.svg"
alt="image"></a>
<a href="#"><img src="https://promzzykoncepts.github.io/NFT-Conference/images/coinbase.svg"
alt="image"></a>
</div>
</div>
</section>
<footer class="contact1">
<div class="contact">
<h1>Wills Hotel</h1>
</div>
<p class="link">Copyright ©2022 All rights reserved | This is a Demo Website and all contacts provided are
null
and void.
This website is designed by <a href="kgeorgewilliam60@gmail.com" class="email">Kidde</a>
</p>
</footer>
<script src="script.js"></script>
</body>
</html>