-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
108 lines (79 loc) · 3.24 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title> Magestic Hotel</title>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="dist/pickmeup.min.js"></script>
<script type="text/javascript" src="dist/handleCounter.js"></script>
<link rel="stylesheet" type="text/css" href="css/pickmeup.css">
<link rel="stylesheet" type="text/css" href="css/handle-counter.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans" rel="stylesheet">
<script type="text/javascript" src="dist/jquery.scrollUp.js"></script>
<script type="text/javascript" src="dist/demo.js"></script>
<script async defer
src="https://maps.googleapis.com/maps/api/js?key=AIzaSyB3tO4SQlk9ZVpuhRXlmNfYh37e63-Li2k&callback=initMap">
</script>
</head>
<body>
<header class="tm-header">
<img class="tm-logo" src="images/Majestic_Hotel_hd.png" alt="Majestic Hotel">
<nav class="tm-nav">
<div>
<ul>
<li class="tm-list"><a href="index.html">Home</a></li>
<li class="tm-list"><a href="explore.html">Explore</a></li>
<li class="tm-list"><a href="rooms.html">Rooms</a></li>
<li class="tm-list"><a href="bb.html">Booking</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section class="tm-main">
<p>Contact</p>
</section>
<section class="tm-booking">
<form>
<div class="tm-form1">
<input type="text" name="name" placeholder="Name">
<input type="email" name="email" placeholder="E-mail">
<textarea placeholder="Your message..." rows="4" ></textarea>
<input type="submit" id="sub2" value="Send">
</div>
</form>
<div class="vertical-line"> </div>
<div class="tm-form2">
<div class="tm-cl">
<p class="here">We are situated over here</p><img id="place" src="images/placeholder.png">
<div id="map"></div>
</div>
</div>
</section>
<footer class="tm-footer">
<div class="tm-us">
<p class="bold">About Us</p>
<p>We are a part of chain of luxury hotels
which extends all over the world. We
provide a luxorious stay with various value
added and free services which will make
you visit us over and over again.</p>
</div>
<div class="tm-address">
<p class="bold">Address</p>
<p>415, Park Avenu, Hawai
Phone : (211) 9275693451
Email : majestic@info.com</p>
</div>
<br/>
<div class="tm-media">
<a href="#"> <img src="images/fb.png"></a>
<a href="#"> <img src="images/G.png"> </a>
<a href="#"> <img src="images/twittr.png"> </a>
<a href="#"> <img src="images/insta.png"> </a>
</div>
<!-- <a href="#"> <img class="tm-up" src="images/up.png"> </a>-->
</footer>
</body>
</html>