-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
85 lines (82 loc) · 3.17 KB
/
Copy pathindex.html
File metadata and controls
85 lines (82 loc) · 3.17 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<script src="https://kit.fontawesome.com/e9fa1254e6.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/home.css">
<link rel="stylesheet" href="css/homeImage.css">
</head>
<body>
<div class="container">
<div class="top-container">
<i class="fas fa-phone"> +91-7008892532</i> |
<i class="fas fa-envelope"> grandhotel@gmail.com</i>
</div>
<hr></hr>
<div class="header">
<div class="logo">
<a href="#"><img src="images/logo.png" alt="hotel image"></a>
</div>
<ul>
<li class="default"><a href="#"><i class="fas fa-home"></i>HOME</a></li>
<li class="dropdown">
<a href=""><i class="fas fa-cogs"></i>SERVICES</a>
<ol class="dropdown-content">
<li><a href="html/aminities.html">AMINITIES</a></li>
<li><a href="html/restaurant.html">RESTAURANT</a></li>
<li><a href="html/gallery.html">GALLERY</a></li>
</ol>
</li>
<li> <a href="html\testimonial.html"><i class="fas fa-comments"></i>TESTIMONIAL</a> </li>
<li> <a href="html/about.html"><i class="fas fa-user-edit"></i>ABOUT US</a> </li>
<li><a href="html/contact.html"><i class="fas fa-phone"></i>CONTACT US</a> </li>
</ul>
</div>
<div class="body">
<h4 id='tag'>A LUXURY PARADISE</h4>
<h2 id='booking-prompt'>BOOK YOUR ROOM NOW</h2>
<div class="book-table">
<div class="book-table-item">
<div class="input-append">
<input size="16" type="text" value readonly placeholder="Arrival Date">
</div>
</div>
<div class="book-table-item">
<div class="input-append">
<input size="16" type="text" value readonly placeholder="Departure Date">
</div>
</div>
<div class="book-table-item">
<div class="input-append">
<input size="16" type="text" value readonly placeholder="Adults">
</div>
</div>
<div class="book-table-item">
<div class="input-append">
<input size="16" type="text" value readonly placeholder="Childrens">
</div>
</div>
<div class="book-table-item">
<div class="input-append">
<button class='btn'>Check Availability</button>
</div>
</div>
</div>
</div>
<div class="footer">
<div class="copy">
© 2020 by Gopinath
</div>
<div class="social">
<a href="https://www.facebook.com" aria-label="facebook" target="_blank"><i class="fa fa-facebook fa-5px"></i></a>
<a href="https://www.twitter.com" aria-label="twitter" target="_blank"><i class="fa fa-twitter fa-5px"></i></a>
<a href="https://www.linkedin.com" aria-label="linkedin" target="_blank"><i class="fa fa-linkedin fa-5px"></i></a>
<a href="https://www.google.com" aria-label="google" target="_blank"><i class="fa fa-google-plus fa-5px"></i></a>
</div>
</div>
</div>
</body>
</html>