-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
77 lines (69 loc) · 3.04 KB
/
Copy pathcontact.html
File metadata and controls
77 lines (69 loc) · 3.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Welcome to most extra ordinary hotel">
<meta name="keywords" content="hotel">
<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/9e8dabcc62.js"></script>
<title>Hotel BT | Contact </title>
</head>
<body>
<header>
<nav id="navbar">
<div class="container">
<h1 class="logo"><a href="index.html">HBT</a></h1>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a class="current" href="contact.html">Contact</a></li>
</ul>
</div>
</nav>
</header>
<section id="form">
<div class="container">
<h1 class="l-heading"> <span class="text">Contact</span> Us</h1>
<p>Please fill the form below to contact us</p>
<form action="https://formspree.io/shaleengovil2000@gmail.com" method="POST" target="_blank">
<div class="group">
<label for="1">Name</label>
<input type="text" name="name">
</div>
<div class="group">
<label for="2">Email</label>
<input type="email" name="_replyto" >
</div>
<div class="group">
<label for="3">Message</label>
<textarea name="message" id="" cols="10" rows="0" name="message"></textarea>
</div>
<button class="btn" type="submit" value="send">Submit</button>
</form>
</div>
</section>
<div id="contact-info">
<div class="box bg">
<i class="fas fa-hotel fa-3x"></i>
<h3> Location</h3>
<p> Mohan nagar, Ghaziabad</p>
</div>
<div class="box bg">
<i class="fas fa-phone fa-3x"></i>
<h3>Phone</h3>
<p>88005743xx</p>
</div>
<div class="box bg">
<i class="fas fa-envelope fa-3x"></i>
<h3>E-mail</h3>
<p>shaleengovil2000@gmail.com</p>
</div>
</div>
<footer id="main">
<p>Made with ♥ by <a href="https://shaleen.co" >Shaleen Govil</a> .</p>
</footer>
</body>
</html>