-
Notifications
You must be signed in to change notification settings - Fork 8
/
Contact.html
92 lines (83 loc) · 3.37 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
<!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 | Contact </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 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="contact-form" class="py-3">
<div class="container">
<h1 class="l-heading"><span class="text-primary">Contact</span> Us</h1>
<p>Please Fill The Form To Contact Us</p>
<form action="https://api.web3forms.com/submit" method="POST">
<input type="hidden" name="access_key" value="a4c73768-9057-41a2-8157-3bc5f7bf6860">
<input type="hidden" name="subject" value= "New form Submission from Hotel Website Form" />
<div class="form-group">
<label for="name">Name</label>
<input type="text" name="name" id="name">
</div>
<div class="form-group">
<label for="email">Email</label>
<input type="email" name="email" id="email">
</div>
<div class="form-group">
<label for="message">Message</label>
<textarea name="message" id="message" ></textarea>
</div>
<a href="index.html"><button class="btn" type="submit">Submit</button></a>
</form>
</div>
</section>
<section id="contact-info">
<div class="bg-dark">
<div class="box">
<i class="fas fa-hotel fa-3x"></i>
<h3>Location</h3>
<p>Near Faisal Mosque, Islamabad, Pakistan</p>
</div>
<div class="box">
<i class="fas fa-phone fa-3x"></i>
<h3>Phone: </h3>
<p>+923 483016704</p>
</div>
<div class="box">
<i class="fas fa-envelope fa-3x"></i>
<h3>Email</h3>
<p>[email protected]</p>
</div>
</div>
</section>
<footer class="main-footer">
<p>Fancy Marquee © 2021 | All Rights Reserved By Daoud Hussain</p>
</footer>
</body>
</html>
<!-- <script>
document
.getElementById("visitNowButton")
.addEventListener("click", function (event) {
// Prevent the default action (following the link)
event.preventDefault();
// Redirect to index.html
window.location.href = this.getAttribute("href");
});
</script>
-->